Momuntum_Flipper_For_T_Embed

Momentum T-Embed — v2

Firmware for the LilyGo T-Embed CC1101 (ESP32-S3). Flash it in your browser: elicoftz.github.io/Momuntum_Flipper_For_T_Embed

After flashing, extract sdcard.zip onto a FAT32 microSD and insert it — most apps need files there.


✨ New in v2

System & updates

WiFi

Apps & hardware


Install

Option A — Web flasher (easiest, no tools)

Open the web flasher in Chrome or Edge, connect your board over USB, pick LilyGo T-Embed CC1101, and click flash.

Download momentum_t_embed_cc1101_v2_merged.bin below — bootloader + partition table + app in one image — and flash it at 0x0:

python -m esptool --chip esp32s3 -b 460800 --before default_reset --after hard_reset write_flash 0x0 momentum_t_embed_cc1101_v2_merged.bin

Add -p COM4 (Windows) or -p /dev/ttyACM0 (Linux/macOS) if the port isn’t auto-detected. This is the easiest CLI option — one file, one offset.

Option C — Three separate .bin files

Prefer the individual images? Download the three assets below and flash each at its offset with esptool (pip install esptool):

File Flash offset
bootloader.bin 0x0
partition-table.bin 0x8000
furi_esp32.bin 0x20000

Run this from the folder where you downloaded them (one command, all three):

python -m esptool --chip esp32s3 -b 460800 --before default_reset --after hard_reset write_flash --flash_mode dio --flash_size 16MB --flash_freq 80m 0x0 bootloader.bin 0x8000 partition-table.bin 0x20000 furi_esp32.bin

Then — set up the SD card

Download sdcard.zip, extract its contents onto the root of a FAT32 microSD, and insert it — most apps need files there.

Notes