Moved page up in hierachy

This commit is contained in:
gijsio
2020-10-02 12:53:07 +02:00
parent b1ad096dbe
commit bb677d5e1e
3 changed files with 9 additions and 9 deletions

View File

@@ -22,7 +22,7 @@ In this section, we will explain how to create widgets for data visualisation an
# Send data continuously to Pybytes
while True:
for i in range(0,20):
pybytes.send_signal(math.sin(i*math.pi))
pybytes.send_signal(math.sin(i/10*math.pi))
print('sent signal {}'.format(i))
time.sleep(10)
```

View File

@@ -63,7 +63,7 @@ After creation, you will land on the provisioning page. This is where we 'inform
You can continue to [display data from your device into the Pybytes dashboard](/pybytes/dashboard/)
## Final remarks
If you wish to disable Pybytes, you can use `pycom.pybytes_on_boot(False)` will permanently. It is also possible to start Pybytes in a later stage (not on boot) by importing the module:
If you wish to disable Pybytes, you can use `pycom.pybytes_on_boot(False)`. It is also possible to start Pybytes in a later stage (not on boot) by importing the module:
```python
from _pybytes import Pybytes
pybytes = Pybytes