-
Notifications
You must be signed in to change notification settings - Fork 18
Updating
Three ways to update, from easiest to most manual. In all three your settings survive.
- On the device: gear icon > System tab > enable Allow OTA updates (until restart). This is a safety lock; it re-arms itself on every restart, so a forgotten switch cannot brick anything. Do not tap Save afterwards, just close the settings.
- Download the right
-ota.binfrom the latest release:-
esp32flight-vX.Y.Z-ota.binfor all 800x480 boards (Waveshare 7 / 4.3 / 5" Guition) -
esp32flight-vX.Y.Z-7b-ota.binfor the Waveshare 7B -
esp32flight-vX.Y.Z-tab5-ota.binfor the M5Stack Tab5
-
- Open the web panel (
http://esp32flight.local), Settings tab, Firmware update card, pick the file, upload. The device flashes the spare slot, restarts and keeps all settings.
The panel names the exact file your board needs, and since 0.4.3 the device refuses a file built for a different board with a plain error before anything is written. Uploading the wrong file cannot break the device.
Limitation: OTA updates the application only. Bundled assets (airline logos, flags, airport database, world maps) stay at the version last written by a full flash. Most releases do not change the assets; when one does, the release notes say so, and a browser flash brings you fully up to date.
Open the flasher page in Chrome or Edge, click the button for your board, pick the port. Leave "Erase device" unchecked: the flasher writes firmware and assets but never touches the settings region, so Wi-Fi and configuration survive. Check the box only for a first install or to deliberately start fresh.
This is the recommended path when a release updates the bundled assets, and the only upgrade path that updates everything at once.
Download the -full.bin for your board and write it at offset 0x0:
esptool.py --chip esp32s3 -b 230400 write_flash 0x0 esp32flight-vX.Y.Z-full.binFor the Tab5 use --chip esp32p4. Note that a -full.bin contains a blank settings region, so unlike the browser flasher this path erases your configuration. Back it up first (below).
The web panel Settings tab has a Backup card:
- Download backup saves every setting, including Wi-Fi credentials, API keys and favorites, as a single JSON file.
- Restore takes that file and applies it in one click; the device saves and restarts.
Handy before a full flash, when moving to a new board, or for keeping a known-good configuration around.
-
Wrong file rejected: each build carries its board variant in the version (
0.4.3,0.4.3-7b,0.4.3-tab5). The OTA handler compares it against the running variant and rejects a mismatch before writing a single byte. - Two application slots: OTA writes the spare slot and only switches on success, so a failed or interrupted upload leaves the running firmware untouched.
- Settings out of the line of fire: settings live in their own flash region which OTA never touches and the browser flasher deliberately skips.
When a newer release is available, the gear icon blinks and a banner appears at the top of the device settings with the version number. The web panel Settings tab shows the same hint. Nothing updates automatically; you always pull the trigger yourself.
esp32flight - MIT (c) theqkash | Flash from your browser | Discord | Support on Ko-fi
Setup
Using it
Reference
Links