Skip to content

Commit 82f2e06

Browse files
committed
docs(README): format with prettier
1 parent 2e5b8a2 commit 82f2e06

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,21 @@ Raspberry Pi Pico Emulator for the [Wokwi Simulation Platform](https://wokwi.com
66

77
If you are just looking to play around with the Raspberry Pi Pico Simulator, check out the Wokwi Simulator:
88

9-
* [Raspberry Pi Pico Traffic Light](https://wokwi.com/arduino/projects/297322571959894536)
10-
* [LCD1602 Hello World](https://wokwi.com/arduino/projects/297323005822894602)
11-
* [MicroPython Blink](https://wokwi.com/arduino/projects/300504213470839309)
12-
* [MicroPython 7-Segment Counter](https://wokwi.com/arduino/projects/300210834979684872)
9+
- [Raspberry Pi Pico Traffic Light](https://wokwi.com/arduino/projects/297322571959894536)
10+
- [LCD1602 Hello World](https://wokwi.com/arduino/projects/297323005822894602)
11+
- [MicroPython Blink](https://wokwi.com/arduino/projects/300504213470839309)
12+
- [MicroPython 7-Segment Counter](https://wokwi.com/arduino/projects/300210834979684872)
1313

1414
For more information, take a look at the [wokwi-pi-pico docs](https://docs.wokwi.com/parts/wokwi-pi-pico) and the [Pi Pico MicroPython Guide](https://docs.wokwi.com/guides/micropython).
1515

1616
If you want to develop your own application using the Raspberry Pi Pico simulator, the following examples may be helpful:
1717

18-
* [Blink LEDs with RP2040js, from scratch](https://stackblitz.com/edit/rp2040js-blink?file=index.ts) - Press "Run" and patiently wait for the code to compile ;-)
18+
- [Blink LEDs with RP2040js, from scratch](https://stackblitz.com/edit/rp2040js-blink?file=index.ts) - Press "Run" and patiently wait for the code to compile ;-)
1919

2020
## Run the demo project
2121

2222
### Native code
23+
2324
You'd need to get `hello_uart.hex` by building it from the [pico-examples repo](https://github.com/raspberrypi/pico-examples/tree/master/uart/hello_uart), then copy it to the rp2040js root directory and run:
2425

2526
```
@@ -28,6 +29,7 @@ npm start
2829
```
2930

3031
### MicroPython code
32+
3133
To run the MicroPython demo, first download [rp2-pico-20210902-v1.17.uf2](https://micropython.org/resources/firmware/rp2-pico-20210902-v1.17.uf2), place it in the rp2040js root directory, then run:
3234

3335
```
@@ -51,6 +53,7 @@ With MicroPython – and probably also CircuitPython – you can use the filesys
5153

5254
A simple way to create a suitable LittleFS image containing your script files is outlined in [create_littlefs_image.py](https://github.com/tomods/GrinderController/blob/358ad3e0f795d8cc0bdf4f21bb35f806871d433f/tools/create_littlefs_image.py).
5355
So, using [littlefs-python](https://pypi.org/project/littlefs-python/), you can do the following:
56+
5457
```python
5558
from littlefs import LittleFS
5659
files = ['your.py', 'files.py', 'here.py', 'main.py']

0 commit comments

Comments
 (0)