Development environment setup and workflow for Universe 2025 (Tufty) Badge with MonaOS. Use when setting up the badge, flashing firmware, debugging, or working with the development toolchain.
View on GitHubjohnlindquist/badger-2350-plugin
badger-2350-dev
January 25, 2026
Select agents to install to:
npx add-skill https://github.com/johnlindquist/badger-2350-plugin/blob/main/badger-2350-dev/skills/badger-2350-dev/SKILL.md -a claude-code --skill badger-2350-devInstallation paths:
.claude/skills/badger-2350-dev/# Universe 2025 Badge Development Help develop, flash, and debug applications for the Universe 2025 (Tufty) Badge and its **MonaOS** launcher system. ## Important: MonaOS & API The Universe 2025 Badge uses: - **MonaOS**: Built-in app launcher that auto-discovers apps in `/system/apps/` directory - **badgeware Module**: Custom API with screen, brushes, shapes, io, Image, PixelFont - **Display**: 160x120 framebuffer (pixel-doubled to 320x240) - **App Structure**: Apps are **directories** containing `__init__.py`, `icon.png`, and optional `assets/` - **Entry Point**: Apps must implement `update()` function called every frame When developing MonaOS apps: 1. Use the `badgeware` module API 2. Create app as directory with `__init__.py` and `icon.png` 3. Install to `/system/apps/my_app/` directory 4. HOME button exits to menu automatically 5. Default menu shows 6 apps - enable pagination for more ## Board Specifications - **Processor**: RP2350 dual-core ARM Cortex-M33 @ 200MHz - **Memory**: 512KB SRAM, 16MB QSPI XiP flash - **Display**: 320x240 full-color IPS (160x120 framebuffer pixel-doubled) - **Connectivity**: 2.4GHz WiFi, Bluetooth 5 - **Power**: USB-C charging, 1000mAh rechargeable battery (up to 8 hours runtime) - **Special Features**: IR receiver/transmitter, 4-zone LED backlight - **Buttons**: 5 front-facing (A, B, C, UP, DOWN) + HOME button - **Expansion**: 4 GPIO pins, Qw/ST and SWD ports - **Primary Language**: MicroPython with badgeware module + MonaOS ## Development Setup ### 1. Install toolchain For MicroPython development: ```bash # Install Thonny IDE (recommended for beginners) brew install --cask thonny # Or install command-line tools pip install esptool adafruit-ampy mpremote ``` For C++ development: ```bash # Install Pico SDK git clone https://github.com/raspberrypi/pico-sdk.git export PICO_SDK_PATH=/path/to/pico-sdk ``` ### 2. Connect to the badge ```bash # List connected devices ls /dev/tty.usb* # Connect via serial (MicroPython REPL) scr