Plus firmware for Seeed Wio Tracker L1
This branch extends the official MeshCore companion radio firmware for the Seeed Wio Tracker L1.
Join the discussion on the offical MeshCore discord: https://discord.gg/sdhYArU2jr
Feature highlights
-
Extended language support with native Unicode rendering and input (Lemon font) alongside the original ASCII mode (Default font with transliteration)
-
Messages Screen — view and send messages, open message details, reply with quick messages or custom text, per-channel notification and melody overrides
-
Favourites Dial — pin up to six contacts for quick access from the home screen
-
Settings Screen — configure display, sound, home page order, radio and system settings
-
Clock Screen — view time and date plus up to three configurable sensor values
-
Screen Lock — lock the device to prevent accidental keypresses, with a lock screen showing time and sensor data
-
Tools Screen — GPS trail recording and export, ringtone editor, auto-reply bot, and more
Firmware Variants
Two firmware builds are published with each release:
| Variant | Display | File |
|---|---|---|
| OLED | SSD1306 / SH1106 128 × 64 | WioTrackerL1_companion_dual_*.uf2 |
| E-ink | GxEPD2 250 × 122 | WioTrackerL1Eink_companion_dual_*.uf2 |
Both variants are built from a single codebase and share the same feature set. The dual in the filename means a single binary supports both BLE and USB serial — there are no separate BLE/USB builds.
Warning
When migrating from official/custom firmware, backup your data and perform factory reset to prevent conflicts with existing settings and data:
- Open device settings in the companion app and download data backup
- Go to MeshCore Flasher website
- Select "Wio Tracker L1 Pro"
- Choose any of the firmware variant
- Perform "Erase flash"
Development
This fork tracks the upstream MeshCore repository. To prevent upstream changes from overwriting this README during merges, README.md is protected via .gitattributes. After cloning, run once:
git config merge.ours.driver true
Display Screenshot Tool
Note
The screenshot feature requires the
ENABLE_SCREENSHOTbuild flag to be enabled. Add-D ENABLE_SCREENSHOTto your PlatformIO build flags, then recompile and flash the firmware.
The firmware supports capturing the current display contents and transmitting it over USB serial. This is useful for debugging, remote monitoring, or creating documentation.
Important: When the device is connected to the companion app, the USB serial port is not available for communication. To use the screenshot tool, ensure the device is not connected to the companion app.
Usage:
- Build and flash firmware with
-D ENABLE_SCREENSHOTbuild flag enabled
Example for the OLED dual firmware:
PLATFORMIO_BUILD_FLAGS="-D ENABLE_SCREENSHOT" pio run -e WioTrackerL1_companion_dual -t upload
-
Connect the device to your computer via USB (ensure no companion app connection)
-
Install dependencies and run the screenshot tool. To manage python and python dependencies, use uv: https://docs.astral.sh/uv/
cd tools uv run tools/screenshot.pyOptions:
--port PORT— Serial port to use (default: auto-detect)--scale SCALE— Upscale factor for the output image (1=no upscale, 2=2x, 3=3x, 4=4x, etc.; default: 1)
-
In the tool's interactive menu, press S to capture a screenshot
-
The tool will save the screenshot as a PNG file in
tools/pngs/with a timestamp-based filename
How it works:
- The tool sends the
CMD_GET_SCREENSHOTcommand (66) to the device - The device responds with
RESP_CODE_SCREENSHOT(29) containing the framebuffer data - The framebuffer is transmitted in chunks (128×64 display = 1024 bytes, split across multiple frames)
- The tool reassembles the chunks and converts them to a PNG image