Changes between Version 3 and Version 4 of iot/avnetiotconnect
- Timestamp:
- 05/11/2020 06:33:14 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
iot/avnetiotconnect
v3 v4 54 54 * deviceID used for demo is gateworks1 55 55 * [https://help.iotconnect.io/knowledgebase/on-boarding-raspberry-pi/] 56 * Edit the demo python script (iotconnect/sample/gateworks.py) 56 * Edit the demo python script (iotconnect/sample/gateworks.py) created by Gateworks to upload actual board temperature and simulated humidity every 60 seconds. 57 57 * Three pieces of required data to be modified in the demo code using something like the 'vi' editor: 58 58 * CPID is the company ID, a special key found on the Avnet IoT Dashboard under Settings -> Company Profile … … 77 77 * Devices listing: 78 78 [[Image(devices-Capture.PNG,900px)]] 79 80 == Next Steps 81 * Other sample scripts exist in the samples directory, including the example_py2.py 82 * Connect more data from other sensors connected to other bus's 83 * Explore on the IoTConnect platform to analyze, monitor and notify on the uploaded data 84 * Expand the demo to have the Gateworks SBC act as an IoT Gateway for many sensors 79 85 80 86 == Further IoT Reading … … 144 150 print(ex.message) 145 151 sys.exit(0) 146 time.sleep( 10)152 time.sleep(60) 147 153 148 154