Minor patches

This commit is contained in:
gijsio
2021-04-12 16:42:13 +02:00
committed by peter-pycom
parent 67df76c0c6
commit d4f518ff11
3 changed files with 4 additions and 18 deletions

View File

@@ -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/)