You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/tutorials/generic/micropython-installation/micropython-installation.md
+12-5Lines changed: 12 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -123,13 +123,12 @@ Go to the Arduino Lab MicroPython IDE and press connect in the top left, choose
123
123
124
124
## Arduino Nano RP2040 Connect
125
125
126
-
If you want to program your Arduino board using MicroPython, and have an Arduino Nano RP2040 to use for this purpose, congratulations! You have chosen the easiest board to flash with the MicroPython firmware!
126
+
To program your Arduino Nano RP2040 board with MicroPython, follow the instructions just below. The Nano RP2040 is the easiest board to get started with MicroPython, as the installation requires no additional software tools for installation.
127
127
128
128
All you need to do is to:
129
129
130
130
1. Download the `.uf2` firmware file from the [MicroPython page](/micropython).
131
-
2. Connect your board to the computer and double tap the reset button to put it in bootloader mode,
132
-
on your computer.
131
+
2. Connet the `REC` pin to ground to expose the boards file system to your computer, this is easier if you put the board in a breadboard.
133
132
3. Drag and drop the firmware file onto the boards flash storage which shows up as an external storage device on your computer, and you're done!
134
133
135
134
## Arduino Portenta H7
@@ -168,7 +167,11 @@ Double tap the reset button on your board to put it in DFU mode, and execute the
168
167
dfu-util -a 0 -d 0x2341:0x035b -D {firmware.dfu}
169
168
```
170
169
171
-
Again, don't disconnect or power off your board during this part of the process, watch the progress of flashing the firmware to your board. Once complete, you're all set and you're ready to start programming the board in MicroPython.
170
+
Again, don't disconnect or power off your board during this part of the process, watch the progress of flashing the firmware to your board.
171
+
172
+
You should now see **two** progress bars appear in one after the other. The first one is showing the progress of erasing the firmware that was previously on the board, and the second one is showing the progress of flashing the new firmware.
173
+
174
+
Once complete, you're all set and you're ready to start programming the board in MicroPython.
172
175
173
176
Go to the Arduino Lab MicroPython IDE and press connect in the top left, choose the port, and code away!
174
177
@@ -192,7 +195,11 @@ Double tap the reset button on your board to put it in DFU mode, and execute the
192
195
dfu-util -a 0 -d 0x2341:0x035b -D {firmware.dfu}
193
196
```
194
197
195
-
Again, don't disconnect or power off your board during this part of the process, watch the progress of flashing the firmware to your board. Once complete, you're all set and you're ready to start programming the board in MicroPython.
198
+
Again, don't disconnect or power off your board during this part of the process, watch the progress of flashing the firmware to your board.
199
+
200
+
You should now see **two** progress bars appear in one after the other. The first one is showing the progress of erasing the firmware that was previously on the board, and the second one is showing the progress of flashing the new firmware.
201
+
202
+
Once complete, you're all set and you're ready to start programming the board in MicroPython.
196
203
197
204
Go to the Arduino Lab MicroPython IDE and press connect in the top left, choose the port, and code away!
0 commit comments