Changes between Version 3 and Version 4 of iot/avnetiotconnect


Ignore:
Timestamp:
05/11/2020 06:33:14 PM (4 years ago)
Author:
Ryan Erbstoesser
Comment:

add next steps

Legend:

Unmodified
Added
Removed
Modified
  • iot/avnetiotconnect

    v3 v4  
    5454  * deviceID used for demo is gateworks1
    5555  * [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.
    5757  * Three pieces of required data to be modified in the demo code using something like the 'vi' editor:
    5858   * CPID is the company ID, a special key found on the Avnet IoT Dashboard under Settings -> Company Profile
     
    7777  * Devices listing:
    7878[[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
    7985
    8086== Further IoT Reading
     
    144150        print(ex.message)
    145151        sys.exit(0)
    146     time.sleep(10)
     152    time.sleep(60)
    147153
    148154