By default, two line charts have been created for you. These show data usage for last hour and the past 24 hours. In this section, we will explain how to see the data coming from your device on Ctrl.
We’re assuming that you have already connected your device to CTRL. In case you haven’t, check how to add your device here. After you’re done with that, you can proceed to the next example.
CtrlR_signals
main.py
# Import what is necessary to create a thread import time import math # Send data continuously to Ctrl while True: for i in range(0,20): ctrl.send_signal(1, math.sin(i/10*math.pi)) print('sent signal {}'.format(i)) time.sleep(10)
Upload
Signals
Now you’ve learned how to view your data on the device.