1
0
Fork 0
mirror of https://github.com/treyturner/wled-mm-builds.git synced 2026-06-12 21:09:30 -05:00
Unofficial WLED Moon Modules builds for QuinLED hardware like the DigOcta, DigQuad, DigUno, and Dig2go, as well as a few other boards.
  • Shell 54.5%
  • Makefile 45.5%
Find a file
2026-05-07 23:11:29 -05:00
.github/workflows ci: use run_number in build id instead of run_id 2026-03-27 03:32:05 -05:00
scripts fix: prefer ESP32 targets 2026-05-07 23:11:29 -05:00
.gitignore ci: trigger builds on PRs, move Docker caches into workspace, misc fixes 2026-03-25 23:00:38 -05:00
LICENSE Initial commit 2026-01-22 17:42:55 -06:00
Makefile ci: trigger builds on PRs, move Docker caches into workspace, misc fixes 2026-03-25 23:00:38 -05:00
platformio_override.ini Add platformio_override.ini, Makefile, CI build and release pipeline 2026-02-03 02:53:35 -06:00
README.md feat: migrate from forgejo to github but dual publish (#1) 2026-03-22 02:10:51 -05:00

wled-mm-builds

Unofficial WLED Moon Modules builds for QuinLED hardware as well as a few other boards. I'm affiliated with neither.

Targets

QuinLED boards

  • Dig2go
  • DigUno (including wired ethernet and temperature sensor variants)

Other boards

Planned but not yet implemented

Environment Variables

  • IOT_SSID: If set, will be supplied to build as CLIENT_SSID
  • WPA_KEY: If set, will be supplied to build as CLIENT_PASS

Building

  1. Clone and change directory into repo

    git clone https://github.com/treyturner/wled-mm-builds.git \
    && cd wled-mm-builds
    
  2. Checkout WLED-MM source

    make checkout GIT_REF="v14.7.1"
    
  3. Build

    1. All targets:

      make build GIT_REF="v14.7.1"
      
    2. Or one or more space-separated targets:

      make build GIT_REF="v14.7.1" PIO_ENVS="quinled_dig2go quinled_diguno_eth_temp"
      
  4. Profit

    Factory and OTA bins are emitted to build/.

Flashing

FACTORY IMAGES SHOULD BE FLASHED AT 0x0:

esptool.py write_flash 0x0 WLEDMM_14.7.1_QuinLED_Dig2go.bin

⚠️ Note: A full erase and reflash is likely needed for v14.7.1 due to the transition to the v4 framework. Future updates should generally be OTA-compatible.