T3-S3

Vendor: LILYGO
Features: BLE, Display, External Flash, External RAM, LoRa, SDCard, USB-C, WiFi
Source on GitHub: esp32/LILYGO_T3_S3
More info: Website

The following files are firmware for the LILYGO T3-S3 v1.2/v1.3 (ESP32-S3FH4R2 with SX1262 LoRa radio, SSD1306 OLED display, and SD card slot).

This board uses native USB for the serial REPL.

Installation instructions

Program your board using the esptool.py program, found here.

Windows users: You may find the installed program is called esptool instead of esptool.py.

Erasing

If you are putting MicroPython on your board for the first time then you should first erase the entire flash using:

esptool.py erase_flash

esptool.py will try to detect the serial port with the ESP32 automatically, but if this fails or there might be more than one Espressif-based device attached to your computer then pass the --port option with the name of the target serial port. For example:

esptool.py --port PORTNAME erase_flash
  • On Linux, the port name is usually similar to /dev/ttyACM0.
  • On Mac, the port name is usually similar to /dev/cu.usbmodem01.
  • On Windows, the port name is usually similar to COM4.

Flashing

Then deploy the firmware to the board, starting at address 0:

esptool.py write_flash 0 ESP32_BOARD_NAME-DATE-VERSION.bin

Replace ESP32_BOARD_NAME-DATE-VERSION.bin with the .bin file downloaded from this page.

As above, if esptool.py can't automatically detect the serial port then you can pass it explicitly on the command line instead. For example:

esptool.py --port PORTNAME write_flash 0 ESP32_BOARD_NAME-DATE-VERSION.bin

Troubleshooting

If these steps don't work, consult the MicroPython ESP32 Troubleshooting steps and the esptool documentation.

Important: From the options below, download the .bin file for your board.

Firmware

Preview builds

These are automatic builds of the development branch for the next release.

v1.29.0-preview.65.g50348ce0eb (2026-04-15) .uf2 / [.app-bin] / [.bin] / [.elf] / [.map]
v1.29.0-preview.33.ga179cb6913 (2026-04-15) .uf2 / [.app-bin] / [.bin] / [.elf] / [.map]
v1.29.0-preview.32.g8c6dfa5bd4 (2026-04-10) .uf2 / [.app-bin] / [.bin] / [.elf] / [.map]
v1.29.0-preview.30.gb0d2072114 (2026-04-08) .uf2 / [.app-bin] / [.bin] / [.elf] / [.map]