From 999159b432baf13d7b693f1618a6a6f63a85389c Mon Sep 17 00:00:00 2001 From: kayvandenaker <34678030+kayvandenaker@users.noreply.github.com> Date: Thu, 14 Jul 2022 10:15:30 +0200 Subject: [PATCH 1/2] Add details on back to normal mode --- .../03.programming/05.arduino-and-python/arduino-and-python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/learn/03.programming/05.arduino-and-python/arduino-and-python.md b/content/learn/03.programming/05.arduino-and-python/arduino-and-python.md index e92554aa48..f9fa4e8c3c 100644 --- a/content/learn/03.programming/05.arduino-and-python/arduino-and-python.md +++ b/content/learn/03.programming/05.arduino-and-python/arduino-and-python.md @@ -35,7 +35,7 @@ while (True): As MicroPython is already running on the board, we don't need to compile and upload the code, we only need to provide the instructions (which is done via serial communication). -***When installing MicroPython on a board, it can only run MicroPython scripts, until we "uninstall" it. To put the board back in "normal mode" we need to reset the bootloader, which is a unique process for each board. These instructions are available in the [compatible boards](#micropython-compatible-boards) section in this article. *** +***When installing MicroPython on a board, it can only run MicroPython scripts, until we "uninstall" it. To put the board back in "normal mode" we need to reset the bootloader, which is a unique process for each board. These instructions are available in the [compatible boards](#micropython-compatible-boards) section in this article. Basically, you have to put the board in bootloader mode and upload any .ino sketch with the Arduino IDE. *** ## OpenMV Editor From 38f9aa1cfd87dd9f557d1b77826bd938f3fee368 Mon Sep 17 00:00:00 2001 From: kayvandenaker <34678030+kayvandenaker@users.noreply.github.com> Date: Thu, 14 Jul 2022 14:08:54 +0200 Subject: [PATCH 2/2] Update content/learn/03.programming/05.arduino-and-python/arduino-and-python.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Yeah looks good! Co-authored-by: Pablo Marquínez Ferrándiz