Menu

QuinLED Dig boards WLED platform.ini settings

Back to Addressable LEDs section

Recently (2023-Q2) we started to provide custom built versions of WLED on https://install.quinled.info which users can flash to have most settings of their QuinLED Dig board (dig2go, Dig-Uno, Dig-Quad, Dig-Octa) pre-set and they don’t have to mess with complicated software compiling themselves and have an easier install process vs starting with the non-pre-configured WLED builds.

Some users however have expressed they’d like to see the settings we use to either slightly change them or to include some other USERMODs then we do by default. Below are the platformio_override.ini file settings we use to compile the custom versions.

You can download the complete file here.

This is not a tutorial

Per board example

Below are some examples especially if they are for a special version, please use the fully downloaded file above for all variants!

dig2go

Standard dig2go including audio reactive USERMOD

[env:dig2go]
board = esp32dev
platform = ${esp32.platform}
upload_speed = 921600
upload_flags = 
build_unflags = ${common.build_unflags}
build_flags = ${common.build_flags_esp32}
  -D WLED_DISABLE_LOXONE
  -D WLED_DISABLE_BLYNK
  -D IR_ENABLE_DEFAULT=true
  -D WLED_RELEASE_NAME=dig2go
  -D SERVERNAME="\"dig2go\""
  -D LEDPIN=16
  -D DEFAULT_LED_COUNT=300
  -D ABL_MILLIAMPS_DEFAULT=1250
  -D RLYPIN=12
  -D BTNPIN=0
  -D IRPIN=5
  -D DMENABLED=1
  -D USERMOD_AUDIOREACTIVE
  -D UM_AUDIOREACTIVE_USE_NEW_FFT
  -D SR_DMTYPE=1
  -D I2S_SDPIN=19
  -D I2S_WSPIN=4
  -D I2S_CKPIN=18 
  -D SR_SQUELCH=10
  -D SR_GAIN=30
lib_deps = ${esp32.lib_deps}
 https://github.com/kosme/arduinoFFT#develop @ 1.9.2
board_build.partitions = ${esp32.default_partitions}
extra_scripts = ${scripts_defaults.extra_scripts}

 

Dig-Uno v3-AB

QuinLED-Dig-Uno v3 with standard board antenna

[env:dig-Uno-V3]
board = esp32dev
platform = ${esp32.platform}
platform_packages = ${esp32.platform_packages}
build_unflags = ${common.build_unflags}
build_flags = ${common.build_flags_esp32}
  -D WLED_RELEASE_NAME=Dig-Uno-V3
  -D SERVERNAME="\"Dig-Uno-V3\""
  -D NOWIFISLEEP=false
  -D WLED_DISABLE_BLYNK
  -D USERMOD_AUDIOREACTIVE
  -D UM_AUDIOREACTIVE_USE_NEW_FFT
  -D SR_DMTYPE=1
  -D I2S_SDPIN=-1
  -D I2S_WSPIN=-1
  -D I2S_CKPIN=-1
  -D SR_SQUELCH=10
  -D SR_GAIN=30
  -D RLYPIN=15
  -D BTNPIN=0
  -D IRPIN=-1
  -D PIXEL_COUNTS="30,30"
  -D DATA_PINS="16,3"
  -D DEFAULT_LED_COUNT=60
  -D ABL_MILLIAMPS_DEFAULT=1250
lib_deps = ${esp32.lib_deps}
 https://github.com/kosme/arduinoFFT#develop @ 1.9.2
board_build.partitions = ${esp32.default_partitions}
extra_scripts = ${scripts_defaults.extra_scripts}

Dig-Quad v3-ABE

QuinLED-Dig-Quad v3 with ABE Ethernet module

[env:dig-Quad-V3-ETHON]
board = esp32dev
platform = ${esp32.platform}
platform_packages = ${esp32.platform_packages}
build_unflags = ${common.build_unflags}
build_flags = ${common.build_flags_esp32}
  -D WLED_RELEASE_NAME=Dig-Quad-V3-eth
  -D SERVERNAME="\"Dig-Quad-V3\""
  -D WLED_USE_ETHERNET
  -D WLED_ETH_DEFAULT=4
  -D NOWIFISLEEP=false
  -D WLED_DISABLE_BLYNK
  -D USERMOD_AUDIOREACTIVE
  -D UM_AUDIOREACTIVE_USE_NEW_FFT
  -D SR_DMTYPE=1
  -D I2S_SDPIN=-1
  -D I2S_WSPIN=-1
  -D I2S_CKPIN=-1
  -D SR_SQUELCH=10
  -D SR_GAIN=30
  -D RLYPIN=15
  -D BTNPIN=0
  -D IRPIN=-1
  -D PIXEL_COUNTS="30,30,30,30"
  -D DATA_PINS="16,3,1,4"
  -D DEFAULT_LED_COUNT=120
  -D ABL_MILLIAMPS_DEFAULT=1250
lib_deps = ${esp32.lib_deps}
 https://github.com/kosme/arduinoFFT#develop @ 1.9.2
board_build.partitions = ${esp32.default_partitions}
extra_scripts = ${scripts_defaults.extra_scripts}

Dig-Octa

Dig-Octa Brainboard-32-8L with Ethernet and Temperature sensor compiled in

[env:dig-Octa_32-8L-ETHON-Temp]
board = esp32dev
platform = ${esp32.platform}
platform_packages = ${esp32.platform_packages}
build_unflags = ${common.build_unflags}
build_flags = ${common.build_flags_esp32}
  -D WLED_RELEASE_NAME=Dig-Octa-32-8L_Eth_SHT
  -D SERVERNAME="\"Dig-Octa-32-8L\""
  -D WLED_USE_ETHERNET
  -D WLED_ETH_DEFAULT=8
  -D NOWIFISLEEP=false
  -D WLED_DISABLE_BLYNK
  -D RLYPIN=33
  -D BTNPIN=34
  -D IRPIN=-1
  -D I2CSDAPIN=32
  -D I2CSCLPIN=13
  -D PIXEL_COUNTS="30,30,30,30,30,30,30"
  -D DATA_PINS="0,1,2,3,4,5,12"
  -D DEFAULT_LED_COUNT=210
  -D USERMOD_SHT
  -D ABL_MILLIAMPS_DEFAULT=1250
lib_deps = ${esp32.lib_deps}
    robtillaart/SHT85@~0.3.3
board_build.partitions = ${esp32.default_partitions}
extra_scripts = ${scripts_defaults.extra_scripts}