* <html><a href="https://docs.micropython.org/en/latest/esp8266/tutorial/intro.html" target="_blank">Getting started with MicroPython on the ESP8266</a></html>
-
* <html><a href="https://docs.micropython.org/en/latest/esp32/tutorial/intro.html" target="_blank">Getting started with MicroPython on the ESP32</a></html>
* Exemples de code sur <html><a href="https://wiki.mchobby.be/index.php?title=MicroPython-Accueil" target="_blank">MCHobby</a></html>
-
-
* **Bibliographie**
-
* **Programmez** ! Juillet/Août 2019
-
* **Elektor 489** Mai/Jui 2021
-
-
----
-
-
==== 1. Description des cartes ESPRESSIF ====
-
* Voir les Wikis Arduino
-
* [[arduino:uc:esp8266|La carte ESP8266 Feather Huzzah]]
-
* [[arduino:uc:esp32|La carte ESP32 Feather Huzzah]]
-
* [[arduino:uc:esp01|Les cartes ESP01(S)]]
-
-
==== 2. Installer MicroPython ====
-
* **Ressources**
-
* <html><a href="https://randomnerdtutorials.com/flashing-micropython-firmware-esptool-py-esp32-esp8266/" target="_blank">Flashing MicroPython Firmware with esptool.py on ESP32 and ESP8266</a></html>
-
* <html><a href="https://docs.micropython.org/en/latest/esp32/tutorial/intro.html" target="_blank">Getting started with MicroPython on the ESP32</a></html>
-
-
=== 2.1 En ligne de commande (sous Windows)===
-
* **Installer esptool**
-
-
<note>esptool est un utilitaire basé sur Python, open source et indépendant de la plate-forme, permettant de communiquer avec le chargeur de démarrage ROM dans les puces Espressif ESP8266 et ESP32.</note>
-
-
Ouvrir une console et entrer la commande suivante :
<note important>**Télécharger** la dernière **version stable** de MicroPython pour la carte ciblée <html><a href="https://micropython.org/download#esp8266" target="_blank">ici</a></html>.</note>
* <html><a href="https://thonny.org/" target="_blank">Thonny</a></html> est un environnement de développement intégré pour Python conçu pour les débutants. Il prend en charge différentes façons de parcourir le code, l'évaluation d'expression étape par étape, la visualisation détaillée de la pile d'appels et un mode pour expliquer les concepts de références et de tas.
-
-
<note important>**Télécharger** la dernière **version stable** de MicroPython pour la carte ciblée <html><a href="https://micropython.org/download#esp8266" target="_blank">ici</a></html>.</note>
-
-
* **Connecter** le module au port USB du PC
-
-
* Ouvrir les options de Thonny (outils -> options) et sélectionner la carte en dépliant "**Port ou WebREPL**"
* **Source** : <html><a href="https://docs.micropython.org/en/latest/esp32/tutorial/intro.html" target="_blank">Getting started with MicroPython on the ESP32</a></html>
-
-
<note>**REPL** pour **R**ead **E**val **P**rint **L**oop est un environnement de programmation informatique interactif simple qui prend les entrées d'un seul utilisateur, les exécute et renvoie le résultat; un programme écrit dans un environnement REPL est exécuté par morceaux.</note>
-
-
=== 3.1 Connexion avec la ligne de commande (sous Windows)===
* **Source et plus loin...** : <html><a href="https://docs.micropython.org/en/latest/esp32/tutorial/intro.html" target="_blank">Getting started with MicroPython on the ESP32</a></html>