diff --git a/content/gettingstarted/_index.md b/content/gettingstarted/_index.md index 9cc982f..463b91c 100644 --- a/content/gettingstarted/_index.md +++ b/content/gettingstarted/_index.md @@ -120,13 +120,6 @@ Great work, the RGB-LED on your device should now blink in red, green and blue In the previous section we got code running on on your Pycom module using the `run` feature of Pymakr. This is useful for quick testing but has a couple of drawbacks. Firstly the code does not remain on the device permanently. If you reboot the device, it will no longer be running your code. Secondly, it will only work if you are using libraries built into the firmware. If you need any extra libraries, these need to be copied to the device first. This is where the `upload` feature comes in. If instead of `run` you click `upload`, Pymakr will upload all the files in the project. These then persist on your device even between reboots, and allows you to use libraries from the `lib` folder in your project. -If you need to remove files from your device you can use the following commands: - -```python ->>> import os ->>> os.fsformat('/flash') -``` - ## Step 4: Using your shield From here on, you can continue to use the additional features of your expansionboard: >Note The Expansionboard requires no additional libraries and all functions work out of the box! @@ -139,9 +132,12 @@ From here on, you can continue to use the additional features of your expansionb |[WiFi](/tutorials/networks/wlan/) | [LoRa](/tutorials/networks/lora/) | [SigFox](/tutorials/networks/sigfox/) | [BLE](/tutorials/networks/ble/) | [LTE](/tutorials.networks/lte/) | Ethernet | |:---|:---|:---|:---|:---|:---| + ## Further references + Now that we got the basic example running, you can continue with the links below. +* [Connect using Pybytes](/pybytes/gettingstarted/) * [Tutorials and examples](/tutorials/) @@ -149,8 +145,6 @@ Now that we got the basic example running, you can continue with the links below * [FTP and Telnet](/gettingstarted/programming/ftp/) -* [Connect using Pybytes](/pybytes/getstarted/) - * [Registering with a network](/gettingstarted/registration/) * [Updating the firmware of your device](/updatefirmware/) diff --git a/content/pybytes/api/_index.md b/content/pybytes/api/_index.md index 3b72f37..62f088a 100644 --- a/content/pybytes/api/_index.md +++ b/content/pybytes/api/_index.md @@ -15,7 +15,7 @@ pybytes = Pybytes(conf) pybytes.start() ``` -Or on boot +Or start the connection to Pybytes on boot, this way it's always available: ```python import pycom import machine diff --git a/content/pybytes/gettingstarted.md b/content/pybytes/gettingstarted.md index 4452f31..2c9ca44 100644 --- a/content/pybytes/gettingstarted.md +++ b/content/pybytes/gettingstarted.md @@ -63,11 +63,3 @@ 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)`. 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 -``` - -