TinyPICO

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

The following files are firmware for the TinyPICO.

Installation instructions

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

Your TinyPICO has an auto-reset circuit on it, so there is no need to put it into a download mode first to erase or flash it.

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 esp32 --port /dev/ttyUSB0 erase_flash

Mac

esptool.py --chip esp32 --port /dev/tty.SLAB_USBtoUART erase_flash

Windows

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

esptool --chip esp32 --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 tinypico-micropython-firmware-version.bin with the name of the firmware you just downloaded:

From then on program the firmware starting at address 0x1000:

Linux

esptool.py --chip esp32 --port /dev/ttyUSB0 --baud 921600 write_flash -z 0x1000 tinypico-micropython-firmware-version.bin

Mac

esptool.py --chip esp32 --port /dev/tty.SLAB_USBtoUART --baud 921600 write_flash -z 0x1000 tinypico-micropython-firmware-version.bin

Windows

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

esptool --chip esp32 --port COM(X) --baud 921600 write_flash -z 0x1000 tinypico-micropython-firmware-version.bin

Firmware

Releases

v1.22.2 (2024-02-22) .bin / [.app-bin] / [.elf] / [.map] / [Release notes] (latest)
v1.22.1 (2024-01-05) .bin / [.app-bin] / [.elf] / [.map] / [Release notes]
v1.22.0 (2023-12-27) .bin / [.app-bin] / [.elf] / [.map] / [Release notes]
v1.21.0 (2023-10-05) .bin / [.app-bin] / [.elf] / [.map] / [Release notes]
v1.20.0 (2023-04-26) .bin / [.elf] / [.map] / [Release notes]
v1.19.1 (2022-06-18) .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]
v1.16 (2021-06-23) .bin / [.elf] / [.map] / [Release notes]
v1.15 (2021-04-18) .bin / [.elf] / [.map] / [Release notes]
v1.14 (2021-02-02) .bin / [.elf] / [.map] / [Release notes]
v1.13 (2020-09-02) .bin / [.elf] / [.map] / [Release notes]
v1.12 (2020-03-16) .bin / [.elf] / [.map] / [Release notes]

Preview builds

v1.23.0-preview.312.g628a37e6c (2024-03-28) .bin / [.app-bin] / [.elf] / [.map]
v1.23.0-preview.298.gdb1b5df16 (2024-03-28) .bin / [.app-bin] / [.elf] / [.map]
v1.23.0-preview.297.g35e8d184b (2024-03-27) .bin / [.app-bin] / [.elf] / [.map]
v1.23.0-preview.296.g0f16ae92c (2024-03-27) .bin / [.app-bin] / [.elf] / [.map]
(These are automatic builds of the development branch for the next release)

Firmware (Compiled with IDF 3.x)

No releases are available for this board.