Getting started with MicroPython with NodeMCU(ESP8266) board
Getting started with MicroPython with NodeMCU(ESP8266) board 1. Follow the official tutorial to flash the MicroPython firmware Link: https://docs.micropython.org/en/latest/esp8266/quickref.html https://docs.micropython.org/en/latest/esp8266/tutorial/intro.html#intro Comands you may need: $ esptool.py --port /dev/tty.usbserial-14120 erase_flash $ esptool.py --port /dev/tty.usbserial-14120 --baud 460800 write_flash --flash_size=detect -fm dout 0 esp8266-20210902-v1.17.bin you’ll receive message from ESP8266 on serial monitor such as puTTy: microPython v1.17 on 2021-09-02; ESP module with ESP8266 Type "help()" for more information. micropython script can be run in the REPL shell. The Adafruit ampy tool gives you more function and recommended to use it.
…