mirror of
https://github.com/sascha-hemi/pycom-documentation.git
synced 2026-03-21 08:06:34 +01:00
Moved page up in hierachy
This commit is contained in:
@@ -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)
|
||||
```
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user