Tiny S2

Vendor: Unexpected Maker
Features: Battery Charging, External Flash, External RAM, JST-SH, RGB LED, USB-C, WiFi
Source on GitHub: esp32/UM_TINYS2
More info: Website

The following files are firmware for the TinyS2.

Installation instructions

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

To flash or erase your TinyS2, you have to first put it into download mode. To do this, follow these steps:

  • Press and hold the [BOOT] button
  • Press and release the [RESET] button
  • Release the [BOOT] button

Now the board is in download mode and the native USB will have enumerated as a serial device.

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

Linux

esptool.py --chip esp32s2 --port /dev/ttyACM0 erase_flash

Mac

esptool.py --chip esp32s2 --port /dev/cu.usbmodem01 erase_flash

Windows

Change (X) to whatever COM port is being used by the board

esptool --chip esp32s2 --port COM(X) erase_flash

Now download the version of the firmware you would like to install from the options below, then use the following command to program the firmware starting at address 0x1000, remembering to replace tinys2-micropython-firmware-version.bin with the name of the firmware you just downloaded:

Linux

esptool.py --chip esp32s2 --port /dev/ttyACM0 write_flash -z 0x1000 tinys2-micropython-firmware-version.bin

Mac

esptool.py --chip esp32s2 --port /dev/cu.usbmodem01 write_flash -z 0x1000 tinys2-micropython-firmware-version.bin

Windows

Change (X) to whatever COM port is being used by the board

esptool --chip esp32s2 --port COM(X) write_flash -z 0x1000 tinys2-micropython-firmware-version.bin

Firmware

Releases

v1.22.2 (2024-02-22) .uf2 / [.app-bin] / [.bin] / [.elf] / [.map] / [Release notes] (latest)
v1.22.1 (2024-01-05) .uf2 / [.app-bin] / [.bin] / [.elf] / [.map] / [Release notes]
v1.22.0 (2023-12-27) .uf2 / [.app-bin] / [.bin] / [.elf] / [.map] / [Release notes]
v1.21.0 (2023-10-05) .uf2 / [.app-bin] / [.bin] / [.elf] / [.map] / [Release notes]
v1.20.0 (2023-04-26) .uf2 / [.bin] / [.elf] / [.map] / [Release notes]
v1.19.1 (2022-06-18) .uf2 / [.bin] / [.elf] / [.map] / [Release notes]
v1.18 (2022-01-17) .bin / [.elf] / [.map] / [Release notes]
v1.17 (2021-09-02) .bin / [.elf] / [.map] / [Release notes]

Preview builds

v1.23.0-preview.323.g53d005025 (2024-04-15) .uf2 / [.app-bin] / [.bin] / [.elf] / [.map]
v1.23.0-preview.322.g5114f2c1e (2024-03-30) .uf2 / [.app-bin] / [.bin] / [.elf] / [.map]
v1.23.0-preview.319.g87d821ab4 (2024-03-29) .uf2 / [.app-bin] / [.bin] / [.elf] / [.map]
v1.23.0-preview.314.g20a86eff5 (2024-03-29) .uf2 / [.app-bin] / [.bin] / [.elf] / [.map]
(These are automatic builds of the development branch for the next release)