MicroPython tutorial for ESP8266
This tutorial is intended to get you started using MicroPython on the ESP8266system-on-a-chip. If it is your first time it is recommended to follow thetutorial through in the order below. Otherwise the sections are mostly selfcontained, so feel free to skip to those that interest you.
The tutorial does not assume that you know Python, but it also does not attemptto explain any of the details of the Python language. Instead it provides youwith commands that are ready to run, and hopes that you will gain a bit ofPython knowledge along the way. To learn more about Python itself please refertohttps://www.python.org.
- 1. Getting started with MicroPython on the ESP8266
- 2. Getting a MicroPython REPL prompt
- 3. The internal filesystem
- 4. Network basics
- 5. Network - TCP sockets
- 6. GPIO Pins
- 7. Pulse Width Modulation
- 8. Analog to Digital Conversion
- 9. Power control
- 10. Controlling 1-wire devices
- 11. Controlling NeoPixels
- 12. Controlling APA102 LEDs
- 13. Temperature and Humidity
- 14. Using a SSD1306 OLED display
- 15. Next steps