diff --git a/CHANGELOG.md b/CHANGELOG.md
index b2801b866..e377418e3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,42 @@
## WLED changelog
+#### Build 2409140
+- Configure different kinds of busses at compile (#4107 by @PaoloTK)
+ - BREAKING: removes LEDPIN and DEFAULT_LED_TYPE compile overrides
+- Fetch LED types from Bus classes (dynamic UI) (#4129 by @netmindz, @blazoncek, @dedehai)
+
+#### Build 2409100
+- WLED 0.15.0-b5 release
+- Audioreactive usermod included by default in all compatible builds (including ESP8266)
+- Demystified some byte definitions of WiZmote ESP-NOW message (#4114 by @ChuckMash)
+- Update usermod "Battery" improved MQTT support (#4110 by @itCarl)
+- Added a usermod for interacting with BLE Pixels Dice (#4093 by @axlan)
+- Allow lower values for touch threshold (#4081 by @RobinMeis)
+- Added POV image effect usermod (#3539 by @Liliputech)
+- Remove repeating code to fetch audio data (#4103 by @netmindz)
+- Loxone JSON parser doesn't handle lx=0 correctly (#4104 by @FreakyJ, fixes #3809)
+- Rename wled00.ino to wled_main.cpp (#4090 by @willmmiles)
+- SM16825 chip support including WW & CW channel swap (#4092)
+- Add stress testing scripts (#4088 by @willmmiles)
+- Improve jsonBufferLock management (#4089 by @willmmiles)
+- Fix incorrect PWM bit depth on Esp32 with XTAL clock (#4082 by @PaoloTK)
+- Devcontainer args (#4073 by @axlan)
+- Effect: Fire2012 optional blur amount (#4078 by @apanteleev)
+- Effect: GEQ fix bands (#4077 by @adrianschroeter)
+- Boot delay option (#4060 by @DedeHai)
+- ESP8266 Audioreactive sync (#3962 by @gaaat98, @netmindz, @softhack007)
+- ESP8266 PWM crash fix (#4035 by @willmmiles)
+- Usermod: Battery fix (#4051 by @Nickbert7)
+- Usermod: Mpu6050 usermod crash fix (#4048 by @willmmiles)
+- Usermod: Internal Temperature V2 (#4033 by @adamsthws)
+- Various fixes and improvements (including build environments to emulate 0.14.0 for ESP8266)
+
+#### Build 2407070
+- Various fixes and improvements (mainly LED settings fix)
+
#### Build 2406290
- WLED 0.15.0-b4 release
-- LED settings bus management update (WARNING only allow available outputs)
+- LED settings bus management update (WARNING: only allows available outputs)
- Add ETH support for LILYGO-POE-Pro (#4030 by @rorosaurus)
- Update usermod_sn_photoresistor (#4017 by @xkvmoto)
- Several internal fixes and optimisations
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index cd50b133d..06c221fca 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -16,6 +16,20 @@ A good description helps us to review and understand your proposed changes. For
Please make all PRs against the `0_15` branch.
+### Updating your code
+While the PR is open - and under review by maintainers - you may be asked to modify your PR source code.
+You can simply update your own branch, and push changes in response to reviewer recommendations.
+Github will pick up the changes so your PR stays up-to-date.
+
+> [!CAUTION]
+> Do not use "force-push" while your PR is open!
+> It has many subtle and unexpected consequences on our github reposistory.
+> For example, we regularly lost review comments when the PR author force-pushes code changes. So, pretty please, do not force-push.
+
+
+You can find a collection of very useful tips and tricks here: https://github.com/Aircoookie/WLED/wiki/How-to-properly-submit-a-PR
+
+
### Code style
When in doubt, it is easiest to replicate the code style you find in the files you want to edit :)
@@ -37,6 +51,11 @@ if (a == b) {
}
```
+```cpp
+if (a == b) doStuff(a);
+```
+
+Acceptable - however the first variant is usually easier to read:
```cpp
if (a == b)
{
@@ -44,9 +63,6 @@ if (a == b)
}
```
-```cpp
-if (a == b) doStuff(a);
-```
There should always be a space between a keyword and its condition and between the condition and brace.
Within the condition, no space should be between the parenthesis and variables.
diff --git a/package-lock.json b/package-lock.json
index 38f2099d6..ce2e7a464 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "wled",
- "version": "0.15.0-b4",
+ "version": "0.15.0-b5",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "wled",
- "version": "0.15.0-b4",
+ "version": "0.15.0-b5",
"license": "ISC",
"dependencies": {
"clean-css": "^5.3.3",
diff --git a/package.json b/package.json
index e3c12629c..e47a46b26 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "wled",
- "version": "0.15.0-b4",
+ "version": "0.15.0-b5",
"description": "Tools for WLED project",
"main": "tools/cdata.js",
"directories": {
diff --git a/platformio.ini b/platformio.ini
index 28ed17622..6c477e802 100644
--- a/platformio.ini
+++ b/platformio.ini
@@ -10,7 +10,7 @@
# ------------------------------------------------------------------------------
# CI/release binaries
-default_envs = nodemcuv2, esp8266_2m, esp01_1m_full, nodemcuv2_160, esp8266_2m_160, esp01_1m_full_160, esp32dev, esp32_eth, esp32dev_audioreactive, lolin_s2_mini, esp32c3dev, esp32s3dev_16MB_opi, esp32s3dev_8MB_opi, esp32s3_4M_qspi, esp32_wrover
+default_envs = nodemcuv2, esp8266_2m, esp01_1m_full, nodemcuv2_160, esp8266_2m_160, esp01_1m_full_160, nodemcuv2_compat, esp8266_2m_compat, esp01_1m_full_compat, esp32dev, esp32_eth, lolin_s2_mini, esp32c3dev, esp32s3dev_16MB_opi, esp32s3dev_8MB_opi, esp32s3_4M_qspi, esp32_wrover
src_dir = ./wled00
data_dir = ./wled00/data
@@ -140,7 +140,7 @@ lib_deps =
IRremoteESP8266 @ 2.8.2
makuna/NeoPixelBus @ 2.8.0
#https://github.com/makuna/NeoPixelBus.git#CoreShaderBeta
- https://github.com/Aircoookie/ESPAsyncWebServer.git @ 2.2.1
+ https://github.com/Aircoookie/ESPAsyncWebServer.git#v2.2.1
# for I2C interface
;Wire
# ESP-NOW library
@@ -205,6 +205,38 @@ lib_deps =
ESP8266PWM
${env.lib_deps}
+;; compatibilty flags - same as 0.14.0 which seems to work better on some 8266 boards. Not using PIO_FRAMEWORK_ARDUINO_MMU_CACHE16_IRAM48
+build_flags_compat =
+ -DESP8266
+ -DFP_IN_IROM
+ ;;-Wno-deprecated-declarations
+ -Wno-misleading-indentation
+ ;;-Wno-attributes ;; silence warnings about unknown attribute 'maybe_unused' in NeoPixelBus
+ -DPIO_FRAMEWORK_ARDUINO_ESPRESSIF_SDK22x_190703
+ -DPIO_FRAMEWORK_ARDUINO_LWIP_HIGHER_BANDWIDTH
+ -DVTABLES_IN_FLASH
+ -DMIMETYPE_MINIMAL
+ -DWLED_SAVE_IRAM ;; needed to prevent linker error
+
+;; this platform version was used for WLED 0.14.0
+platform_compat = espressif8266@4.2.0
+platform_packages_compat =
+ platformio/toolchain-xtensa @ ~2.100300.220621 #2.40802.200502
+ platformio/tool-esptool #@ ~1.413.0
+ platformio/tool-esptoolpy #@ ~1.30000.0
+
+;; experimental - for using older NeoPixelBus 2.7.9
+lib_deps_compat =
+ ESPAsyncTCP @ 1.2.2
+ ESPAsyncUDP
+ ESP8266PWM
+ fastled/FastLED @ 3.6.0
+ IRremoteESP8266 @ 2.8.2
+ makuna/NeoPixelBus @ 2.7.9
+ https://github.com/blazoncek/QuickESPNow.git#optional-debug
+ https://github.com/Aircoookie/ESPAsyncWebServer.git#v2.2.1
+
+
[esp32]
#platform = https://github.com/tasmota/platform-espressif32/releases/download/v2.0.2.3/platform-espressif32-2.0.2.3.zip
platform = espressif32@3.5.0
@@ -315,10 +347,19 @@ build_flags = ${common.build_flags} ${esp8266.build_flags} -D WLED_RELEASE_NAME=
lib_deps = ${esp8266.lib_deps}
monitor_filters = esp8266_exception_decoder
+[env:nodemcuv2_compat]
+extends = env:nodemcuv2
+;; using platform version and build options from WLED 0.14.0
+platform = ${esp8266.platform_compat}
+platform_packages = ${esp8266.platform_packages_compat}
+build_flags = ${common.build_flags} ${esp8266.build_flags_compat} -D WLED_RELEASE_NAME=ESP8266_compat #-DWLED_DISABLE_2D
+;; lib_deps = ${esp8266.lib_deps_compat} ;; experimental - use older NeoPixelBus 2.7.9
+
[env:nodemcuv2_160]
extends = env:nodemcuv2
board_build.f_cpu = 160000000L
build_flags = ${common.build_flags} ${esp8266.build_flags} -D WLED_RELEASE_NAME=ESP8266_160 #-DWLED_DISABLE_2D
+ -D USERMOD_AUDIOREACTIVE
[env:esp8266_2m]
board = esp_wroom_02
@@ -329,10 +370,18 @@ build_unflags = ${common.build_unflags}
build_flags = ${common.build_flags} ${esp8266.build_flags} -D WLED_RELEASE_NAME=ESP02
lib_deps = ${esp8266.lib_deps}
+[env:esp8266_2m_compat]
+extends = env:esp8266_2m
+;; using platform version and build options from WLED 0.14.0
+platform = ${esp8266.platform_compat}
+platform_packages = ${esp8266.platform_packages_compat}
+build_flags = ${common.build_flags} ${esp8266.build_flags_compat} -D WLED_RELEASE_NAME=ESP02_compat #-DWLED_DISABLE_2D
+
[env:esp8266_2m_160]
extends = env:esp8266_2m
board_build.f_cpu = 160000000L
build_flags = ${common.build_flags} ${esp8266.build_flags} -D WLED_RELEASE_NAME=ESP02_160
+ -D USERMOD_AUDIOREACTIVE
[env:esp01_1m_full]
board = esp01_1m
@@ -344,10 +393,18 @@ build_flags = ${common.build_flags} ${esp8266.build_flags} -D WLED_RELEASE_NAME=
; -D WLED_USE_REAL_MATH ;; may fix wrong sunset/sunrise times, at the cost of 7064 bytes FLASH and 975 bytes RAM
lib_deps = ${esp8266.lib_deps}
+[env:esp01_1m_full_compat]
+extends = env:esp01_1m_full
+;; using platform version and build options from WLED 0.14.0
+platform = ${esp8266.platform_compat}
+platform_packages = ${esp8266.platform_packages_compat}
+build_flags = ${common.build_flags} ${esp8266.build_flags_compat} -D WLED_RELEASE_NAME=ESP01_compat -D WLED_DISABLE_OTA #-DWLED_DISABLE_2D
+
[env:esp01_1m_full_160]
extends = env:esp01_1m_full
board_build.f_cpu = 160000000L
build_flags = ${common.build_flags} ${esp8266.build_flags} -D WLED_RELEASE_NAME=ESP01_160 -D WLED_DISABLE_OTA
+ -D USERMOD_AUDIOREACTIVE
; -D WLED_USE_REAL_MATH ;; may fix wrong sunset/sunrise times, at the cost of 7064 bytes FLASH and 975 bytes RAM
[env:esp32dev]
@@ -356,7 +413,9 @@ platform = ${esp32.platform}
platform_packages = ${esp32.platform_packages}
build_unflags = ${common.build_unflags}
build_flags = ${common.build_flags} ${esp32.build_flags} -D WLED_RELEASE_NAME=ESP32 #-D WLED_DISABLE_BROWNOUT_DET
+ ${esp32.AR_build_flags}
lib_deps = ${esp32.lib_deps}
+ ${esp32.AR_lib_deps}
monitor_filters = esp32_exception_decoder
board_build.partitions = ${esp32.default_partitions}
@@ -373,19 +432,19 @@ monitor_filters = esp32_exception_decoder
board_build.partitions = ${esp32.large_partitions}
; board_build.f_flash = 80000000L
-[env:esp32dev_audioreactive]
-board = esp32dev
-platform = ${esp32.platform}
-platform_packages = ${esp32.platform_packages}
-build_unflags = ${common.build_unflags}
-build_flags = ${common.build_flags} ${esp32.build_flags} -D WLED_RELEASE_NAME=ESP32_audioreactive #-D WLED_DISABLE_BROWNOUT_DET
- ${esp32.AR_build_flags}
-lib_deps = ${esp32.lib_deps}
- ${esp32.AR_lib_deps}
-monitor_filters = esp32_exception_decoder
-board_build.partitions = ${esp32.default_partitions}
-; board_build.f_flash = 80000000L
-; board_build.flash_mode = dio
+;[env:esp32dev_audioreactive]
+;board = esp32dev
+;platform = ${esp32.platform}
+;platform_packages = ${esp32.platform_packages}
+;build_unflags = ${common.build_unflags}
+;build_flags = ${common.build_flags} ${esp32.build_flags} -D WLED_RELEASE_NAME=ESP32_audioreactive #-D WLED_DISABLE_BROWNOUT_DET
+; ${esp32.AR_build_flags}
+;lib_deps = ${esp32.lib_deps}
+; ${esp32.AR_lib_deps}
+;monitor_filters = esp32_exception_decoder
+;board_build.partitions = ${esp32.default_partitions}
+;; board_build.f_flash = 80000000L
+;; board_build.flash_mode = dio
[env:esp32_eth]
board = esp32-poe
@@ -394,8 +453,10 @@ platform_packages = ${esp32.platform_packages}
upload_speed = 921600
build_unflags = ${common.build_unflags}
build_flags = ${common.build_flags} ${esp32.build_flags} -D WLED_RELEASE_NAME=ESP32_Ethernet -D RLYPIN=-1 -D WLED_USE_ETHERNET -D BTNPIN=-1
- -D WLED_DISABLE_ESPNOW ;; ESP-NOW requires wifi, may crash with ethernet only
+; -D WLED_DISABLE_ESPNOW ;; ESP-NOW requires wifi, may crash with ethernet only
+ ${esp32.AR_build_flags}
lib_deps = ${esp32.lib_deps}
+ ${esp32.AR_lib_deps}
board_build.partitions = ${esp32.default_partitions}
[env:esp32_wrover]
@@ -405,14 +466,14 @@ platform_packages = ${esp32_idf_V4.platform_packages}
board = ttgo-t7-v14-mini32
board_build.f_flash = 80000000L
board_build.flash_mode = qio
-board_build.partitions = ${esp32.default_partitions}
+board_build.partitions = ${esp32.extended_partitions}
build_unflags = ${common.build_unflags}
build_flags = ${common.build_flags} ${esp32_idf_V4.build_flags} -D WLED_RELEASE_NAME=ESP32_WROVER
-DBOARD_HAS_PSRAM -mfix-esp32-psram-cache-issue ;; Older ESP32 (rev.<3) need a PSRAM fix (increases static RAM used) https://docs.espressif.com/projects/esp-idf/en/stable/esp32/api-guides/external-ram.html
- -D LEDPIN=25
- ; ${esp32.AR_build_flags}
+ -D DATA_PINS=25
+ ${esp32.AR_build_flags}
lib_deps = ${esp32_idf_V4.lib_deps}
- ; ${esp32.AR_lib_deps}
+ ${esp32.AR_lib_deps}
[env:esp32c3dev]
extends = esp32c3
@@ -508,7 +569,7 @@ build_flags = ${common.build_flags} ${esp32s2.build_flags} -D WLED_RELEASE_NAME=
-DLOLIN_WIFI_FIX ; seems to work much better with this
-D WLED_WATCHDOG_TIMEOUT=0
-D CONFIG_ASYNC_TCP_USE_WDT=0
- -D LEDPIN=16
+ -D DATA_PINS=16
-D HW_PIN_SCL=35
-D HW_PIN_SDA=33
-D HW_PIN_CLOCKSPI=7
diff --git a/platformio_override.sample.ini b/platformio_override.sample.ini
index 55bab5420..e536edbed 100644
--- a/platformio_override.sample.ini
+++ b/platformio_override.sample.ini
@@ -29,6 +29,8 @@ lib_deps = ${esp8266.lib_deps}
; ;gmag11/QuickESPNow @ ~0.7.0 # will also load QuickDebug
; https://github.com/blazoncek/QuickESPNow.git#optional-debug ;; exludes debug library
; ${esp32.AR_lib_deps} ;; used for USERMOD_AUDIOREACTIVE
+; bitbank2/PNGdec@^1.0.1 ;; used for POV display uncomment following
+
build_unflags = ${common.build_unflags}
build_flags = ${common.build_flags} ${esp8266.build_flags}
;
@@ -57,7 +59,7 @@ build_flags = ${common.build_flags} ${esp8266.build_flags}
; -D WLED_ENABLE_DMX
;
; PIN defines - uncomment and change, if needed:
-; -D LEDPIN=2
+; -D DATA_PINS=2
; or use this for multiple outputs
; -D DATA_PINS=1,3
; -D BTNPIN=0
@@ -159,6 +161,8 @@ build_flags = ${common.build_flags} ${esp8266.build_flags}
; -D TACHO_PIN=33
; -D PWM_PIN=32
;
+; Use POV Display usermod
+; -D USERMOD_POV_DISPLAY
; Use built-in or custom LED as a status indicator (assumes LED is connected to GPIO16)
; -D STATUSLED=16
;
@@ -236,7 +240,7 @@ platform = ${common.platform_wled_default}
platform_packages = ${common.platform_packages}
board_build.ldscript = ${common.ldscript_4m1m}
build_unflags = ${common.build_unflags}
-build_flags = ${common.build_flags} ${esp8266.build_flags} -D LEDPIN=1 -D WLED_DISABLE_INFRARED
+build_flags = ${common.build_flags} ${esp8266.build_flags} -D DATA_PINS=1 -D WLED_DISABLE_INFRARED
lib_deps = ${esp8266.lib_deps}
[env:esp32dev_qio80]
@@ -342,7 +346,7 @@ platform = ${common.platform_wled_default}
platform_packages = ${common.platform_packages}
board_build.ldscript = ${common.ldscript_4m1m}
build_unflags = ${common.build_unflags}
-build_flags = ${common.build_flags} ${esp8266.build_flags} -D LEDPIN=12 -D IRPIN=-1 -D RLYPIN=2
+build_flags = ${common.build_flags} ${esp8266.build_flags} -D DATA_PINS=12 -D IRPIN=-1 -D RLYPIN=2
lib_deps = ${esp8266.lib_deps}
[env:esp32c3dev_2MB]
@@ -370,7 +374,7 @@ platform_packages = ${esp32.platform_packages}
upload_speed = 460800
build_unflags = ${common.build_unflags}
build_flags = ${common.build_flags} ${esp32.build_flags}
- -D LEDPIN=16
+ -D DATA_PINS=16
-D RLYPIN=19
-D BTNPIN=17
-D IRPIN=18
@@ -389,7 +393,7 @@ board_build.partitions = ${esp32.default_partitions}
[env:m5atom]
board = esp32dev
build_unflags = ${common.build_unflags}
-build_flags = ${common.build_flags} ${esp32.build_flags} -D LEDPIN=27 -D BTNPIN=39
+build_flags = ${common.build_flags} ${esp32.build_flags} -D DATA_PINS=27 -D BTNPIN=39
lib_deps = ${esp32.lib_deps}
platform = ${esp32.platform}
platform_packages = ${esp32.platform_packages}
@@ -399,14 +403,14 @@ board_build.partitions = ${esp32.default_partitions}
board = esp_wroom_02
platform = ${common.platform_wled_default}
board_build.ldscript = ${common.ldscript_2m512k}
-build_flags = ${common.build_flags} ${esp8266.build_flags} -D LEDPIN=3 -D BTNPIN=1
+build_flags = ${common.build_flags} ${esp8266.build_flags} -D DATA_PINS=3 -D BTNPIN=1
lib_deps = ${esp8266.lib_deps}
[env:sp511e]
board = esp_wroom_02
platform = ${common.platform_wled_default}
board_build.ldscript = ${common.ldscript_2m512k}
-build_flags = ${common.build_flags} ${esp8266.build_flags} -D LEDPIN=3 -D BTNPIN=2 -D IRPIN=5 -D WLED_MAX_BUTTONS=3
+build_flags = ${common.build_flags} ${esp8266.build_flags} -D DATA_PINS=3 -D BTNPIN=2 -D IRPIN=5 -D WLED_MAX_BUTTONS=3
lib_deps = ${esp8266.lib_deps}
[env:Athom_RGBCW] ;7w and 5w(GU10) bulbs
@@ -435,7 +439,7 @@ platform = ${common.platform_wled_default}
platform_packages = ${common.platform_packages}
board_build.ldscript = ${common.ldscript_2m512k}
build_unflags = ${common.build_unflags}
-build_flags = ${common.build_flags} ${esp8266.build_flags} -D BTNPIN=0 -D RLYPIN=-1 -D LEDPIN=1 -D WLED_DISABLE_INFRARED
+build_flags = ${common.build_flags} ${esp8266.build_flags} -D BTNPIN=0 -D RLYPIN=-1 -D DATA_PINS=1 -D WLED_DISABLE_INFRARED
lib_deps = ${esp8266.lib_deps}
[env:Athom_4Pin_Controller] ; With clock and data interface
@@ -444,7 +448,7 @@ platform = ${common.platform_wled_default}
platform_packages = ${common.platform_packages}
board_build.ldscript = ${common.ldscript_2m512k}
build_unflags = ${common.build_unflags}
-build_flags = ${common.build_flags} ${esp8266.build_flags} -D BTNPIN=0 -D RLYPIN=12 -D LEDPIN=1 -D WLED_DISABLE_INFRARED
+build_flags = ${common.build_flags} ${esp8266.build_flags} -D BTNPIN=0 -D RLYPIN=12 -D DATA_PINS=1 -D WLED_DISABLE_INFRARED
lib_deps = ${esp8266.lib_deps}
[env:Athom_5Pin_Controller] ;Analog light strip controller
@@ -499,7 +503,7 @@ upload_speed = 921600
build_flags = ${common.build_flags} ${esp32.build_flags} -D WLED_DISABLE_BROWNOUT_DET -D WLED_DISABLE_INFRARED
-D USERMOD_RTC
-D USERMOD_ELEKSTUBE_IPS
- -D LEDPIN=12
+ -D DATA_PINS=12
-D RLYPIN=27
-D BTNPIN=34
-D DEFAULT_LED_COUNT=6
diff --git a/tools/cdata.js b/tools/cdata.js
index 12dda1cbe..d65573a8e 100644
--- a/tools/cdata.js
+++ b/tools/cdata.js
@@ -116,7 +116,8 @@ async function minify(str, type = "plain") {
} else if (type == "css-minify") {
return new CleanCSS({}).minify(str).styles;
} else if (type == "js-minify") {
- return await minifyHtml('', options).replace(/<[\/]*script>/g, '');
+ let js = await minifyHtml('', options);
+ return js.replace(/<[\/]*script>/g, '');
} else if (type == "html-minify") {
return await minifyHtml(str, options);
}
@@ -252,6 +253,12 @@ writeChunks(
str
.replace("%%", "%")
},
+ {
+ file: "common.js",
+ name: "JS_common",
+ method: "gzip",
+ filter: "js-minify",
+ },
{
file: "settings.htm",
name: "PAGE_settings",
diff --git a/tools/stress_test.sh b/tools/stress_test.sh
new file mode 100644
index 000000000..d7c344c58
--- /dev/null
+++ b/tools/stress_test.sh
@@ -0,0 +1,37 @@
+#!/bin/bash
+# Some web server stress tests
+#
+# Perform a large number of parallel requests, stress testing the web server
+# TODO: some kind of performance metrics
+
+# Accepts three command line arguments:
+# - first argument - mandatory - IP or hostname of target server
+# - second argument - target type (optional)
+# - third argument - xfer count (for replicated targets) (optional)
+HOST=$1
+declare -n TARGET_STR="${2:-JSON_LARGER}_TARGETS"
+REPLICATE_COUNT=$(("${3:-10}"))
+
+PARALLEL_MAX=${PARALLEL_MAX:-50}
+
+CURL_ARGS="--compressed --parallel --parallel-immediate --parallel-max ${PARALLEL_MAX}"
+CURL_PRINT_RESPONSE_ARGS="-w %{http_code}\n"
+
+JSON_TARGETS=('json/state' 'json/info' 'json/si', 'json/palettes' 'json/fxdata' 'settings/s.js?p=2')
+FILE_TARGETS=('' 'iro.js' 'rangetouch.js' 'settings' 'settings/wifi')
+# Replicate one target many times
+function replicate() {
+ printf "${1}?%d " $(seq 1 ${REPLICATE_COUNT})
+}
+read -a JSON_TINY_TARGETS <<< $(replicate "json/nodes")
+read -a JSON_SMALL_TARGETS <<< $(replicate "json/info")
+read -a JSON_LARGE_TARGETS <<< $(replicate "json/si")
+read -a JSON_LARGER_TARGETS <<< $(replicate "json/fxdata")
+
+# Expand target URLS to full arguments for curl
+TARGETS=(${TARGET_STR[@]})
+#echo "${TARGETS[@]}"
+FULL_TGT_OPTIONS=$(printf "http://${HOST}/%s -o /dev/null " "${TARGETS[@]}")
+#echo ${FULL_TGT_OPTIONS}
+
+time curl ${CURL_ARGS} ${FULL_TGT_OPTIONS}
diff --git a/tools/udp_test.py b/tools/udp_test.py
new file mode 100644
index 000000000..c4c9129cf
--- /dev/null
+++ b/tools/udp_test.py
@@ -0,0 +1,46 @@
+import numpy as np
+import socket
+
+class WledRealtimeClient:
+ def __init__(self, wled_controller_ip, num_pixels, udp_port=21324, max_pixels_per_packet=126):
+ self.wled_controller_ip = wled_controller_ip
+ self.num_pixels = num_pixels
+ self.udp_port = udp_port
+ self.max_pixels_per_packet = max_pixels_per_packet
+ self._sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
+ self._prev_pixels = np.full((3, self.num_pixels), 253, dtype=np.uint8)
+ self.pixels = np.full((3, self.num_pixels), 1, dtype=np.uint8)
+
+ def update(self):
+ # Truncate values and cast to integer
+ self.pixels = np.clip(self.pixels, 0, 255).astype(np.uint8)
+ p = np.copy(self.pixels)
+
+ idx = np.where(~np.all(p == self._prev_pixels, axis=0))[0]
+ num_pixels = len(idx)
+ n_packets = (num_pixels + self.max_pixels_per_packet - 1) // self.max_pixels_per_packet
+ idx_split = np.array_split(idx, n_packets)
+
+ header = bytes([1, 2]) # WARLS protocol header
+ for packet_indices in idx_split:
+ data = bytearray(header)
+ for i in packet_indices:
+ data.extend([i, *p[:, i]]) # Index and RGB values
+ self._sock.sendto(bytes(data), (self.wled_controller_ip, self.udp_port))
+
+ self._prev_pixels = np.copy(p)
+
+
+
+################################## LED blink test ##################################
+if __name__ == "__main__":
+ WLED_CONTROLLER_IP = "192.168.1.153"
+ NUM_PIXELS = 255 # Amount of LEDs on your strip
+ import time
+ wled = WledRealtimeClient(WLED_CONTROLLER_IP, NUM_PIXELS)
+ print('Starting LED blink test')
+ while True:
+ for i in range(NUM_PIXELS):
+ wled.pixels[1, i] = 255 if wled.pixels[1, i] == 0 else 0
+ wled.update()
+ time.sleep(.01)
diff --git a/usermods/Animated_Staircase/Animated_Staircase.h b/usermods/Animated_Staircase/Animated_Staircase.h
index ae63b6590..462a71dd1 100644
--- a/usermods/Animated_Staircase/Animated_Staircase.h
+++ b/usermods/Animated_Staircase/Animated_Staircase.h
@@ -332,7 +332,7 @@ class Animated_Staircase : public Usermod {
};
// NOTE: this *WILL* return TRUE if all the pins are set to -1.
// this is *BY DESIGN*.
- if (!pinManager.allocateMultiplePins(pins, 4, PinOwner::UM_AnimatedStaircase)) {
+ if (!PinManager::allocateMultiplePins(pins, 4, PinOwner::UM_AnimatedStaircase)) {
topPIRorTriggerPin = -1;
topEchoPin = -1;
bottomPIRorTriggerPin = -1;
@@ -513,10 +513,10 @@ class Animated_Staircase : public Usermod {
(oldBottomAPin != bottomPIRorTriggerPin) ||
(oldBottomBPin != bottomEchoPin)) {
changed = true;
- pinManager.deallocatePin(oldTopAPin, PinOwner::UM_AnimatedStaircase);
- pinManager.deallocatePin(oldTopBPin, PinOwner::UM_AnimatedStaircase);
- pinManager.deallocatePin(oldBottomAPin, PinOwner::UM_AnimatedStaircase);
- pinManager.deallocatePin(oldBottomBPin, PinOwner::UM_AnimatedStaircase);
+ PinManager::deallocatePin(oldTopAPin, PinOwner::UM_AnimatedStaircase);
+ PinManager::deallocatePin(oldTopBPin, PinOwner::UM_AnimatedStaircase);
+ PinManager::deallocatePin(oldBottomAPin, PinOwner::UM_AnimatedStaircase);
+ PinManager::deallocatePin(oldBottomBPin, PinOwner::UM_AnimatedStaircase);
}
if (changed) setup();
}
diff --git a/usermods/Animated_Staircase/README.md b/usermods/Animated_Staircase/README.md
index 320b744a5..2ad66b5ae 100644
--- a/usermods/Animated_Staircase/README.md
+++ b/usermods/Animated_Staircase/README.md
@@ -18,7 +18,7 @@ Before compiling, you have to make the following modifications:
Edit `usermods_list.cpp`:
1. Open `wled00/usermods_list.cpp`
2. add `#include "../usermods/Animated_Staircase/Animated_Staircase.h"` to the top of the file
-3. add `usermods.add(new Animated_Staircase());` to the end of the `void registerUsermods()` function.
+3. add `UsermodManager::add(new Animated_Staircase());` to the end of the `void registerUsermods()` function.
You can configure usermod using the Usermods settings page.
Please enter GPIO pins for PIR or ultrasonic sensors (trigger and echo).
diff --git a/usermods/Battery/readme.md b/usermods/Battery/readme.md
index 84a6f5054..c3d3d8bf4 100644
--- a/usermods/Battery/readme.md
+++ b/usermods/Battery/readme.md
@@ -131,6 +131,11 @@ Specification from: [Molicel INR18650-M35A, 3500mAh 10A Lithium-ion battery, 3.6
## 📝 Change Log
+2024-08-19
+
+- Improved MQTT support
+- Added battery percentage & battery voltage as MQTT topic
+
2024-05-11
- Documentation updated
diff --git a/usermods/Battery/usermod_v2_Battery.h b/usermods/Battery/usermod_v2_Battery.h
index 54516440c..d765ddbb8 100644
--- a/usermods/Battery/usermod_v2_Battery.h
+++ b/usermods/Battery/usermod_v2_Battery.h
@@ -50,6 +50,7 @@ class UsermodBattery : public Usermod
//
bool initDone = false;
bool initializing = true;
+ bool HomeAssistantDiscovery = false;
// strings to reduce flash memory usage (used more than twice)
static const char _name[];
@@ -59,6 +60,7 @@ class UsermodBattery : public Usermod
static const char _preset[];
static const char _duration[];
static const char _init[];
+ static const char _haDiscovery[];
/**
* Helper for rounding floating point values
@@ -69,6 +71,17 @@ class UsermodBattery : public Usermod
return (float)(nx / 100);
}
+ /**
+ * Helper for converting a string to lowercase
+ */
+ String stringToLower(String str)
+ {
+ for(int i = 0; i < str.length(); i++)
+ if(str[i] >= 'A' && str[i] <= 'Z')
+ str[i] += 32;
+ return str;
+ }
+
/**
* Turn off all leds
*/
@@ -115,6 +128,55 @@ class UsermodBattery : public Usermod
#endif
}
+#ifndef WLED_DISABLE_MQTT
+ void addMqttSensor(const String &name, const String &type, const String &topic, const String &deviceClass, const String &unitOfMeasurement = "", const bool &isDiagnostic = false)
+ {
+ StaticJsonDocument<600> doc;
+ char uid[128], json_str[1024], buf[128];
+
+ doc[F("name")] = name;
+ doc[F("stat_t")] = topic;
+ sprintf_P(uid, PSTR("%s_%s_%s"), escapedMac.c_str(), stringToLower(name).c_str(), type);
+ doc[F("uniq_id")] = uid;
+ doc[F("dev_cla")] = deviceClass;
+ doc[F("exp_aft")] = 1800;
+
+ if(type == "binary_sensor") {
+ doc[F("pl_on")] = "on";
+ doc[F("pl_off")] = "off";
+ }
+
+ if(unitOfMeasurement != "")
+ doc[F("unit_of_measurement")] = unitOfMeasurement;
+
+ if(isDiagnostic)
+ doc[F("entity_category")] = "diagnostic";
+
+ JsonObject device = doc.createNestedObject(F("device")); // attach the sensor to the same device
+ device[F("name")] = serverDescription;
+ device[F("ids")] = String(F("wled-sensor-")) + mqttClientID;
+ device[F("mf")] = F(WLED_BRAND);
+ device[F("mdl")] = F(WLED_PRODUCT_NAME);
+ device[F("sw")] = versionString;
+
+ sprintf_P(buf, PSTR("homeassistant/%s/%s/%s/config"), type, mqttClientID, uid);
+ DEBUG_PRINTLN(buf);
+ size_t payload_size = serializeJson(doc, json_str);
+ DEBUG_PRINTLN(json_str);
+
+ mqtt->publish(buf, 0, true, json_str, payload_size);
+ }
+
+ void publishMqtt(const char* topic, const char* state)
+ {
+ if (WLED_MQTT_CONNECTED) {
+ char buf[128];
+ snprintf_P(buf, 127, PSTR("%s/%s"), mqttDeviceTopic, topic);
+ mqtt->publish(buf, 0, false, state);
+ }
+ }
+#endif
+
public:
//Functions called by WLED
@@ -138,7 +200,7 @@ class UsermodBattery : public Usermod
bool success = false;
DEBUGUM_PRINTLN(F("Allocating battery pin..."));
if (batteryPin >= 0 && digitalPinToAnalogChannel(batteryPin) >= 0)
- if (pinManager.allocatePin(batteryPin, false, PinOwner::UM_Battery)) {
+ if (PinManager::allocatePin(batteryPin, false, PinOwner::UM_Battery)) {
DEBUGUM_PRINTLN(F("Battery pin allocation succeeded."));
success = true;
}
@@ -223,13 +285,8 @@ class UsermodBattery : public Usermod
turnOff();
#ifndef WLED_DISABLE_MQTT
- // SmartHome stuff
- // still don't know much about MQTT and/or HA
- if (WLED_MQTT_CONNECTED) {
- char buf[64]; // buffer for snprintf()
- snprintf_P(buf, 63, PSTR("%s/voltage"), mqttDeviceTopic);
- mqtt->publish(buf, 0, false, String(bat->getVoltage()).c_str());
- }
+ publishMqtt("battery", String(bat->getLevel(), 0).c_str());
+ publishMqtt("voltage", String(bat->getVoltage()).c_str());
#endif
}
@@ -288,6 +345,7 @@ class UsermodBattery : public Usermod
battery[F("calibration")] = bat->getCalibration();
battery[F("voltage-multiplier")] = bat->getVoltageMultiplier();
battery[FPSTR(_readInterval)] = readingInterval;
+ battery[FPSTR(_haDiscovery)] = HomeAssistantDiscovery;
JsonObject ao = battery.createNestedObject(F("auto-off")); // auto off section
ao[FPSTR(_enabled)] = autoOffEnabled;
@@ -307,8 +365,8 @@ class UsermodBattery : public Usermod
getJsonValue(battery[F("max-voltage")], cfg.maxVoltage);
getJsonValue(battery[F("calibration")], cfg.calibration);
getJsonValue(battery[F("voltage-multiplier")], cfg.voltageMultiplier);
-
setReadingInterval(battery[FPSTR(_readInterval)] | readingInterval);
+ setHomeAssistantDiscovery(battery[FPSTR(_haDiscovery)] | HomeAssistantDiscovery);
JsonObject ao = battery[F("auto-off")];
setAutoOffEnabled(ao[FPSTR(_enabled)] | autoOffEnabled);
@@ -420,17 +478,18 @@ class UsermodBattery : public Usermod
void appendConfigData()
{
// Total: 462 Bytes
- oappend(SET_F("td=addDropdown('Battery', 'type');")); // 35 Bytes
- oappend(SET_F("addOption(td, 'Unkown', '0');")); // 30 Bytes
- oappend(SET_F("addOption(td, 'LiPo', '1');")); // 28 Bytes
- oappend(SET_F("addOption(td, 'LiOn', '2');")); // 28 Bytes
+ oappend(SET_F("td=addDropdown('Battery','type');")); // 34 Bytes
+ oappend(SET_F("addOption(td,'Unkown','0');")); // 28 Bytes
+ oappend(SET_F("addOption(td,'LiPo','1');")); // 26 Bytes
+ oappend(SET_F("addOption(td,'LiOn','2');")); // 26 Bytes
oappend(SET_F("addInfo('Battery:type',1,'requires reboot');")); // 81 Bytes
- oappend(SET_F("addInfo('Battery:min-voltage', 1, 'v');")); // 40 Bytes
- oappend(SET_F("addInfo('Battery:max-voltage', 1, 'v');")); // 40 Bytes
- oappend(SET_F("addInfo('Battery:interval', 1, 'ms');")); // 38 Bytes
- oappend(SET_F("addInfo('Battery:auto-off:threshold', 1, '%');")); // 47 Bytes
- oappend(SET_F("addInfo('Battery:indicator:threshold', 1, '%');")); // 48 Bytes
- oappend(SET_F("addInfo('Battery:indicator:duration', 1, 's');")); // 47 Bytes
+ oappend(SET_F("addInfo('Battery:min-voltage',1,'v');")); // 38 Bytes
+ oappend(SET_F("addInfo('Battery:max-voltage',1,'v');")); // 38 Bytes
+ oappend(SET_F("addInfo('Battery:interval',1,'ms');")); // 36 Bytes
+ oappend(SET_F("addInfo('Battery:HA-discovery',1,'');")); // 38 Bytes
+ oappend(SET_F("addInfo('Battery:auto-off:threshold',1,'%');")); // 45 Bytes
+ oappend(SET_F("addInfo('Battery:indicator:threshold',1,'%');")); // 46 Bytes
+ oappend(SET_F("addInfo('Battery:indicator:duration',1,'s');")); // 45 Bytes
// this option list would exeed the oappend() buffer
// a list of all presets to select one from
@@ -478,12 +537,12 @@ class UsermodBattery : public Usermod
#ifdef ARDUINO_ARCH_ESP32
newBatteryPin = battery[F("pin")] | newBatteryPin;
#endif
- // calculateTimeLeftEnabled = battery[F("time-left")] | calculateTimeLeftEnabled;
setMinBatteryVoltage(battery[F("min-voltage")] | bat->getMinVoltage());
setMaxBatteryVoltage(battery[F("max-voltage")] | bat->getMaxVoltage());
setCalibration(battery[F("calibration")] | bat->getCalibration());
setVoltageMultiplier(battery[F("voltage-multiplier")] | bat->getVoltageMultiplier());
setReadingInterval(battery[FPSTR(_readInterval)] | readingInterval);
+ setHomeAssistantDiscovery(battery[FPSTR(_haDiscovery)] | HomeAssistantDiscovery);
getUsermodConfigFromJsonObject(battery);
@@ -502,7 +561,7 @@ class UsermodBattery : public Usermod
if (newBatteryPin != batteryPin)
{
// deallocate pin
- pinManager.deallocatePin(batteryPin, PinOwner::UM_Battery);
+ PinManager::deallocatePin(batteryPin, PinOwner::UM_Battery);
batteryPin = newBatteryPin;
// initialise
setup();
@@ -513,38 +572,24 @@ class UsermodBattery : public Usermod
return !battery[FPSTR(_readInterval)].isNull();
}
- /**
- * TBD: Generate a preset sample for low power indication
- * a button on the config page would be cool, currently not possible
- */
- void generateExamplePreset()
+#ifndef WLED_DISABLE_MQTT
+ void onMqttConnect(bool sessionPresent)
{
- // StaticJsonDocument<300> j;
- // JsonObject preset = j.createNestedObject();
- // preset["mainseg"] = 0;
- // JsonArray seg = preset.createNestedArray("seg");
- // JsonObject seg0 = seg.createNestedObject();
- // seg0["id"] = 0;
- // seg0["start"] = 0;
- // seg0["stop"] = 60;
- // seg0["grp"] = 0;
- // seg0["spc"] = 0;
- // seg0["on"] = true;
- // seg0["bri"] = 255;
+ // Home Assistant Autodiscovery
+ if (!HomeAssistantDiscovery)
+ return;
- // JsonArray col0 = seg0.createNestedArray("col");
- // JsonArray col00 = col0.createNestedArray();
- // col00.add(255);
- // col00.add(0);
- // col00.add(0);
+ // battery percentage
+ char mqttBatteryTopic[128];
+ snprintf_P(mqttBatteryTopic, 127, PSTR("%s/battery"), mqttDeviceTopic);
+ this->addMqttSensor(F("Battery"), "sensor", mqttBatteryTopic, "battery", "%", true);
- // seg0["fx"] = 1;
- // seg0["sx"] = 128;
- // seg0["ix"] = 128;
-
- // savePreset(199, "Low power Indicator", preset);
+ // voltage
+ char mqttVoltageTopic[128];
+ snprintf_P(mqttVoltageTopic, 127, PSTR("%s/voltage"), mqttDeviceTopic);
+ this->addMqttSensor(F("Voltage"), "sensor", mqttVoltageTopic, "voltage", "V", true);
}
-
+#endif
/*
*
@@ -785,6 +830,22 @@ class UsermodBattery : public Usermod
{
return lowPowerIndicationDone;
}
+
+ /**
+ * Set Home Assistant auto discovery
+ */
+ void setHomeAssistantDiscovery(bool enable)
+ {
+ HomeAssistantDiscovery = enable;
+ }
+
+ /**
+ * Get Home Assistant auto discovery
+ */
+ bool getHomeAssistantDiscovery()
+ {
+ return HomeAssistantDiscovery;
+ }
};
// strings to reduce flash memory usage (used more than twice)
@@ -795,3 +856,4 @@ const char UsermodBattery::_threshold[] PROGMEM = "threshold";
const char UsermodBattery::_preset[] PROGMEM = "preset";
const char UsermodBattery::_duration[] PROGMEM = "duration";
const char UsermodBattery::_init[] PROGMEM = "init";
+const char UsermodBattery::_haDiscovery[] PROGMEM = "HA-discovery";
diff --git a/usermods/EXAMPLE_v2/usermod_v2_example.h b/usermods/EXAMPLE_v2/usermod_v2_example.h
index 32374fde2..3d562b585 100644
--- a/usermods/EXAMPLE_v2/usermod_v2_example.h
+++ b/usermods/EXAMPLE_v2/usermod_v2_example.h
@@ -71,7 +71,7 @@ class MyExampleUsermod : public Usermod {
// #endif
// in setup()
// #ifdef USERMOD_EXAMPLE
- // UM = (MyExampleUsermod*) usermods.lookup(USERMOD_ID_EXAMPLE);
+ // UM = (MyExampleUsermod*) UsermodManager::lookup(USERMOD_ID_EXAMPLE);
// #endif
// somewhere in loop() or other member method
// #ifdef USERMOD_EXAMPLE
diff --git a/usermods/Fix_unreachable_netservices_v2/readme.md b/usermods/Fix_unreachable_netservices_v2/readme.md
index 006eaf9f9..07d64bc67 100644
--- a/usermods/Fix_unreachable_netservices_v2/readme.md
+++ b/usermods/Fix_unreachable_netservices_v2/readme.md
@@ -59,10 +59,10 @@ void registerUsermods()
* || || ||
* \/ \/ \/
*/
- //usermods.add(new MyExampleUsermod());
- //usermods.add(new UsermodTemperature());
- //usermods.add(new UsermodRenameMe());
- usermods.add(new FixUnreachableNetServices());
+ //UsermodManager::add(new MyExampleUsermod());
+ //UsermodManager::add(new UsermodTemperature());
+ //UsermodManager::add(new UsermodRenameMe());
+ UsermodManager::add(new FixUnreachableNetServices());
}
```
diff --git a/usermods/LDR_Dusk_Dawn_v2/usermod_LDR_Dusk_Dawn_v2.h b/usermods/LDR_Dusk_Dawn_v2/usermod_LDR_Dusk_Dawn_v2.h
index 393fc2232..03f4c078a 100644
--- a/usermods/LDR_Dusk_Dawn_v2/usermod_LDR_Dusk_Dawn_v2.h
+++ b/usermods/LDR_Dusk_Dawn_v2/usermod_LDR_Dusk_Dawn_v2.h
@@ -30,7 +30,7 @@ class LDR_Dusk_Dawn_v2 : public Usermod {
void setup() {
// register ldrPin
if ((ldrPin >= 0) && (digitalPinToAnalogChannel(ldrPin) >= 0)) {
- if(!pinManager.allocatePin(ldrPin, false, PinOwner::UM_LDR_DUSK_DAWN)) ldrEnabled = false; // pin already in use -> disable usermod
+ if(!PinManager::allocatePin(ldrPin, false, PinOwner::UM_LDR_DUSK_DAWN)) ldrEnabled = false; // pin already in use -> disable usermod
else pinMode(ldrPin, INPUT); // alloc success -> configure pin for input
} else ldrEnabled = false; // invalid pin -> disable usermod
initDone = true;
@@ -110,7 +110,7 @@ class LDR_Dusk_Dawn_v2 : public Usermod {
if (initDone && (ldrPin != oldLdrPin)) {
// pin changed - un-register previous pin, register new pin
- if (oldLdrPin >= 0) pinManager.deallocatePin(oldLdrPin, PinOwner::UM_LDR_DUSK_DAWN);
+ if (oldLdrPin >= 0) PinManager::deallocatePin(oldLdrPin, PinOwner::UM_LDR_DUSK_DAWN);
setup(); // setup new pin
}
return configComplete;
@@ -139,7 +139,7 @@ class LDR_Dusk_Dawn_v2 : public Usermod {
//LDR_Off_Count.add(ldrOffCount);
//bool pinValid = ((ldrPin >= 0) && (digitalPinToAnalogChannel(ldrPin) >= 0));
- //if (pinManager.getPinOwner(ldrPin) != PinOwner::UM_LDR_DUSK_DAWN) pinValid = false;
+ //if (PinManager::getPinOwner(ldrPin) != PinOwner::UM_LDR_DUSK_DAWN) pinValid = false;
//JsonArray LDR_valid = user.createNestedArray(F("LDR pin"));
//LDR_valid.add(ldrPin);
//LDR_valid.add(pinValid ? F(" OK"): F(" invalid"));
diff --git a/usermods/PIR_sensor_switch/readme.md b/usermods/PIR_sensor_switch/readme.md
index 4dfdb07bd..fac5419f0 100644
--- a/usermods/PIR_sensor_switch/readme.md
+++ b/usermods/PIR_sensor_switch/readme.md
@@ -52,7 +52,7 @@ class MyUsermod : public Usermod {
void togglePIRSensor() {
#ifdef USERMOD_PIR_SENSOR_SWITCH
- PIRsensorSwitch *PIRsensor = (PIRsensorSwitch::*) usermods.lookup(USERMOD_ID_PIRSWITCH);
+ PIRsensorSwitch *PIRsensor = (PIRsensorSwitch::*) UsermodManager::lookup(USERMOD_ID_PIRSWITCH);
if (PIRsensor != nullptr) {
PIRsensor->EnablePIRsensor(!PIRsensor->PIRsensorEnabled());
}
diff --git a/usermods/PIR_sensor_switch/usermod_PIR_sensor_switch.h b/usermods/PIR_sensor_switch/usermod_PIR_sensor_switch.h
index b74abdc17..31f41e6c5 100644
--- a/usermods/PIR_sensor_switch/usermod_PIR_sensor_switch.h
+++ b/usermods/PIR_sensor_switch/usermod_PIR_sensor_switch.h
@@ -375,7 +375,7 @@ void PIRsensorSwitch::setup()
sensorPinState[i] = LOW;
if (PIRsensorPin[i] < 0) continue;
// pin retrieved from cfg.json (readFromConfig()) prior to running setup()
- if (pinManager.allocatePin(PIRsensorPin[i], false, PinOwner::UM_PIR)) {
+ if (PinManager::allocatePin(PIRsensorPin[i], false, PinOwner::UM_PIR)) {
// PIR Sensor mode INPUT_PULLDOWN
#ifdef ESP8266
pinMode(PIRsensorPin[i], PIRsensorPin[i]==16 ? INPUT_PULLDOWN_16 : INPUT_PULLUP); // ESP8266 has INPUT_PULLDOWN on GPIO16 only
@@ -564,7 +564,7 @@ bool PIRsensorSwitch::readFromConfig(JsonObject &root)
DEBUGUM_PRINTLN(F(" config loaded."));
} else {
for (int i = 0; i < PIR_SENSOR_MAX_SENSORS; i++)
- if (oldPin[i] >= 0) pinManager.deallocatePin(oldPin[i], PinOwner::UM_PIR);
+ if (oldPin[i] >= 0) PinManager::deallocatePin(oldPin[i], PinOwner::UM_PIR);
setup();
DEBUGUM_PRINTLN(F(" config (re)loaded."));
}
diff --git a/usermods/PWM_fan/usermod_PWM_fan.h b/usermods/PWM_fan/usermod_PWM_fan.h
index 6b35a9b02..e934efeb1 100644
--- a/usermods/PWM_fan/usermod_PWM_fan.h
+++ b/usermods/PWM_fan/usermod_PWM_fan.h
@@ -75,7 +75,7 @@ class PWMFanUsermod : public Usermod {
static const char _lock[];
void initTacho(void) {
- if (tachoPin < 0 || !pinManager.allocatePin(tachoPin, false, PinOwner::UM_Unspecified)){
+ if (tachoPin < 0 || !PinManager::allocatePin(tachoPin, false, PinOwner::UM_Unspecified)){
tachoPin = -1;
return;
}
@@ -88,7 +88,7 @@ class PWMFanUsermod : public Usermod {
void deinitTacho(void) {
if (tachoPin < 0) return;
detachInterrupt(digitalPinToInterrupt(tachoPin));
- pinManager.deallocatePin(tachoPin, PinOwner::UM_Unspecified);
+ PinManager::deallocatePin(tachoPin, PinOwner::UM_Unspecified);
tachoPin = -1;
}
@@ -111,7 +111,7 @@ class PWMFanUsermod : public Usermod {
// https://randomnerdtutorials.com/esp32-pwm-arduino-ide/
void initPWMfan(void) {
- if (pwmPin < 0 || !pinManager.allocatePin(pwmPin, true, PinOwner::UM_Unspecified)) {
+ if (pwmPin < 0 || !PinManager::allocatePin(pwmPin, true, PinOwner::UM_Unspecified)) {
enabled = false;
pwmPin = -1;
return;
@@ -121,7 +121,7 @@ class PWMFanUsermod : public Usermod {
analogWriteRange(255);
analogWriteFreq(WLED_PWM_FREQ);
#else
- pwmChannel = pinManager.allocateLedc(1);
+ pwmChannel = PinManager::allocateLedc(1);
if (pwmChannel == 255) { //no more free LEDC channels
deinitPWMfan(); return;
}
@@ -136,9 +136,9 @@ class PWMFanUsermod : public Usermod {
void deinitPWMfan(void) {
if (pwmPin < 0) return;
- pinManager.deallocatePin(pwmPin, PinOwner::UM_Unspecified);
+ PinManager::deallocatePin(pwmPin, PinOwner::UM_Unspecified);
#ifdef ARDUINO_ARCH_ESP32
- pinManager.deallocateLedc(pwmChannel, 1);
+ PinManager::deallocateLedc(pwmChannel, 1);
#endif
pwmPin = -1;
}
@@ -191,9 +191,9 @@ class PWMFanUsermod : public Usermod {
void setup() override {
#ifdef USERMOD_DALLASTEMPERATURE
// This Usermod requires Temperature usermod
- tempUM = (UsermodTemperature*) usermods.lookup(USERMOD_ID_TEMPERATURE);
+ tempUM = (UsermodTemperature*) UsermodManager::lookup(USERMOD_ID_TEMPERATURE);
#elif defined(USERMOD_SHT)
- tempUM = (ShtUsermod*) usermods.lookup(USERMOD_ID_SHT);
+ tempUM = (ShtUsermod*) UsermodManager::lookup(USERMOD_ID_SHT);
#endif
initTacho();
initPWMfan();
diff --git a/usermods/SN_Photoresistor/usermods_list.cpp b/usermods/SN_Photoresistor/usermods_list.cpp
index 649e19739..a2c6ca165 100644
--- a/usermods/SN_Photoresistor/usermods_list.cpp
+++ b/usermods/SN_Photoresistor/usermods_list.cpp
@@ -9,6 +9,6 @@
void registerUsermods()
{
#ifdef USERMOD_SN_PHOTORESISTOR
- usermods.add(new Usermod_SN_Photoresistor());
+ UsermodManager::add(new Usermod_SN_Photoresistor());
#endif
}
\ No newline at end of file
diff --git a/usermods/ST7789_display/ST7789_display.h b/usermods/ST7789_display/ST7789_display.h
index 281fba25d..0dbada382 100644
--- a/usermods/ST7789_display/ST7789_display.h
+++ b/usermods/ST7789_display/ST7789_display.h
@@ -23,6 +23,9 @@
#ifndef TFT_RST
#error Please define TFT_RST
#endif
+ #ifndef TFT_CS
+ #error Please define TFT_CS
+ #endif
#ifndef LOAD_GLCD
#error Please define LOAD_GLCD
#endif
@@ -135,10 +138,10 @@ class St7789DisplayUsermod : public Usermod {
void setup() override
{
PinManagerPinType spiPins[] = { { spi_mosi, true }, { spi_miso, false}, { spi_sclk, true } };
- if (!pinManager.allocateMultiplePins(spiPins, 3, PinOwner::HW_SPI)) { enabled = false; return; }
+ if (!PinManager::allocateMultiplePins(spiPins, 3, PinOwner::HW_SPI)) { enabled = false; return; }
PinManagerPinType displayPins[] = { { TFT_CS, true}, { TFT_DC, true}, { TFT_RST, true }, { TFT_BL, true } };
- if (!pinManager.allocateMultiplePins(displayPins, sizeof(displayPins)/sizeof(PinManagerPinType), PinOwner::UM_FourLineDisplay)) {
- pinManager.deallocateMultiplePins(spiPins, 3, PinOwner::HW_SPI);
+ if (!PinManager::allocateMultiplePins(displayPins, sizeof(displayPins)/sizeof(PinManagerPinType), PinOwner::UM_FourLineDisplay)) {
+ PinManager::deallocateMultiplePins(spiPins, 3, PinOwner::HW_SPI);
enabled = false;
return;
}
@@ -377,7 +380,7 @@ class St7789DisplayUsermod : public Usermod {
oappend(SET_F("addInfo('ST7789:pin[]',0,'','SPI CS');"));
oappend(SET_F("addInfo('ST7789:pin[]',1,'','SPI DC');"));
oappend(SET_F("addInfo('ST7789:pin[]',2,'','SPI RST');"));
- oappend(SET_F("addInfo('ST7789:pin[]',2,'','SPI BL');"));
+ oappend(SET_F("addInfo('ST7789:pin[]',3,'','SPI BL');"));
}
/*
diff --git a/usermods/Temperature/platformio_override.ini b/usermods/Temperature/platformio_override.ini
index 0e354da9e..cc86367fd 100644
--- a/usermods/Temperature/platformio_override.ini
+++ b/usermods/Temperature/platformio_override.ini
@@ -7,6 +7,4 @@
extends = env:d1_mini
build_flags = ${common.build_flags_esp8266} -D USERMOD_DALLASTEMPERATURE
lib_deps = ${env.lib_deps}
- paulstoffregen/OneWire@~2.3.7
-# you may want to use following with ESP32
-; https://github.com/blazoncek/OneWire.git # fixes Sensor error on ESP32
\ No newline at end of file
+ paulstoffregen/OneWire@~2.3.8
\ No newline at end of file
diff --git a/usermods/Temperature/readme.md b/usermods/Temperature/readme.md
index b41e3e119..3d65be7eb 100644
--- a/usermods/Temperature/readme.md
+++ b/usermods/Temperature/readme.md
@@ -43,10 +43,8 @@ default_envs = d1_mini
...
lib_deps =
...
- #For Dallas sensor uncomment following line
- OneWire@~2.3.7
- # ... or you may want to use following with ESP32
-; https://github.com/blazoncek/OneWire.git # fixes Sensor error on ESP32...
+ #For Dallas sensor uncomment following
+ paulstoffregen/OneWire @ ~2.3.8
```
## Change Log
@@ -56,8 +54,14 @@ lib_deps =
* Do not report erroneous low temperatures to MQTT
* Disable plugin if temperature sensor not detected
* Report the number of seconds until the first read in the info screen instead of sensor error
+
2021-04
* Adaptation for runtime configuration.
+
2023-05
* Rewrite to conform to newer recommendations.
-* Recommended @blazoncek fork of OneWire for ESP32 to avoid Sensor error
\ No newline at end of file
+* Recommended @blazoncek fork of OneWire for ESP32 to avoid Sensor error
+
+2024-09
+* Update OneWire to version 2.3.8, which includes stickbreaker's and garyd9's ESP32 fixes:
+ blazoncek's fork is no longer needed
\ No newline at end of file
diff --git a/usermods/Temperature/usermod_temperature.h b/usermods/Temperature/usermod_temperature.h
index b1e32f82c..a4f98b8b3 100644
--- a/usermods/Temperature/usermod_temperature.h
+++ b/usermods/Temperature/usermod_temperature.h
@@ -17,6 +17,8 @@
#define USERMOD_DALLASTEMPERATURE_MEASUREMENT_INTERVAL 60000
#endif
+static uint16_t mode_temperature();
+
class UsermodTemperature : public Usermod {
private:
@@ -60,6 +62,7 @@ class UsermodTemperature : public Usermod {
static const char _sensor[];
static const char _temperature[];
static const char _Temperature[];
+ static const char _data_fx[];
//Dallas sensor quick (& dirty) reading. Credit to - Author: Peter Scargill, August 17th, 2013
float readDallas();
@@ -70,8 +73,13 @@ class UsermodTemperature : public Usermod {
void publishHomeAssistantAutodiscovery();
#endif
+ static UsermodTemperature* _instance; // to overcome nonstatic getTemperatureC() method and avoid UsermodManager::lookup(USERMOD_ID_TEMPERATURE);
+
public:
+ UsermodTemperature() { _instance = this; }
+ static UsermodTemperature *getInstance() { return UsermodTemperature::_instance; }
+
/*
* API calls te enable data exchange between WLED modules
*/
@@ -215,14 +223,14 @@ void UsermodTemperature::setup() {
// config says we are enabled
DEBUGUM_PRINTLN(F("Allocating temperature pin..."));
// pin retrieved from cfg.json (readFromConfig()) prior to running setup()
- if (temperaturePin >= 0 && pinManager.allocatePin(temperaturePin, true, PinOwner::UM_Temperature)) {
+ if (temperaturePin >= 0 && PinManager::allocatePin(temperaturePin, true, PinOwner::UM_Temperature)) {
oneWire = new OneWire(temperaturePin);
if (oneWire->reset()) {
while (!findSensor() && retries--) {
delay(25); // try to find sensor
}
}
- if (parasite && pinManager.allocatePin(parasitePin, true, PinOwner::UM_Temperature)) {
+ if (parasite && PinManager::allocatePin(parasitePin, true, PinOwner::UM_Temperature)) {
pinMode(parasitePin, OUTPUT);
digitalWrite(parasitePin, LOW); // deactivate power (close MOSFET)
} else {
@@ -234,6 +242,7 @@ void UsermodTemperature::setup() {
}
temperaturePin = -1; // allocation failed
}
+ if (sensorFound && !initDone) strip.addEffect(255, &mode_temperature, _data_fx);
}
lastMeasurement = millis() - readingInterval + 10000;
initDone = true;
@@ -414,9 +423,9 @@ bool UsermodTemperature::readFromConfig(JsonObject &root) {
DEBUGUM_PRINTLN(F("Re-init temperature."));
// deallocate pin and release memory
delete oneWire;
- pinManager.deallocatePin(temperaturePin, PinOwner::UM_Temperature);
+ PinManager::deallocatePin(temperaturePin, PinOwner::UM_Temperature);
temperaturePin = newTemperaturePin;
- pinManager.deallocatePin(parasitePin, PinOwner::UM_Temperature);
+ PinManager::deallocatePin(parasitePin, PinOwner::UM_Temperature);
// initialise
setup();
}
@@ -440,6 +449,8 @@ const char *UsermodTemperature::getTemperatureUnit() {
return degC ? "°C" : "°F";
}
+UsermodTemperature* UsermodTemperature::_instance = nullptr;
+
// strings to reduce flash memory usage (used more than twice)
const char UsermodTemperature::_name[] PROGMEM = "Temperature";
const char UsermodTemperature::_enabled[] PROGMEM = "enabled";
@@ -449,4 +460,14 @@ const char UsermodTemperature::_parasitePin[] PROGMEM = "parasite-pwr-pin";
const char UsermodTemperature::_domoticzIDX[] PROGMEM = "domoticz-idx";
const char UsermodTemperature::_sensor[] PROGMEM = "sensor";
const char UsermodTemperature::_temperature[] PROGMEM = "temperature";
-const char UsermodTemperature::_Temperature[] PROGMEM = "/temperature";
\ No newline at end of file
+const char UsermodTemperature::_Temperature[] PROGMEM = "/temperature";
+const char UsermodTemperature::_data_fx[] PROGMEM = "Temperature@Min,Max;;!;01;pal=54,sx=255,ix=0";
+
+static uint16_t mode_temperature() {
+ float low = roundf(mapf((float)SEGMENT.speed, 0.f, 255.f, -150.f, 150.f)); // default: 15°C, range: -15°C to 15°C
+ float high = roundf(mapf((float)SEGMENT.intensity, 0.f, 255.f, 300.f, 600.f)); // default: 30°C, range 30°C to 60°C
+ float temp = constrain(UsermodTemperature::getInstance()->getTemperatureC()*10.f, low, high); // get a little better resolution (*10)
+ unsigned i = map(roundf(temp), (unsigned)low, (unsigned)high, 0, 248);
+ SEGMENT.fill(SEGMENT.color_from_palette(i, false, false, 255));
+ return FRAMETIME;
+}
diff --git a/usermods/audioreactive/audio_reactive.h b/usermods/audioreactive/audio_reactive.h
index d3304cb65..75ef0739d 100644
--- a/usermods/audioreactive/audio_reactive.h
+++ b/usermods/audioreactive/audio_reactive.h
@@ -151,7 +151,6 @@ static bool useBandPassFilter = false; // if true, enables a
////////////////////
// some prototypes, to ensure consistent interfaces
-static float mapf(float x, float in_min, float in_max, float out_min, float out_max); // map function for float
static float fftAddAvg(int from, int to); // average of several FFT result bins
void FFTcode(void * parameter); // audio processing task: read samples, run FFT, fill GEQ channels from FFT results
static void runMicFilter(uint16_t numSamples, float *sampleBuffer); // pre-filtering of raw samples (band-pass)
@@ -213,11 +212,6 @@ static ArduinoFFT FFT = ArduinoFFT( vReal, vImag, samplesFFT, SAMP
// Helper functions
-// float version of map()
-static float mapf(float x, float in_min, float in_max, float out_min, float out_max){
- return (x - in_min) * (out_max - out_min) / (in_max - in_min) + out_min;
-}
-
// compute average of several FFT result bins
static float fftAddAvg(int from, int to) {
float result = 0.0f;
diff --git a/usermods/audioreactive/audio_source.h b/usermods/audioreactive/audio_source.h
index a7337eaf9..a14f8def0 100644
--- a/usermods/audioreactive/audio_source.h
+++ b/usermods/audioreactive/audio_source.h
@@ -194,8 +194,8 @@ class I2SSource : public AudioSource {
virtual void initialize(int8_t i2swsPin = I2S_PIN_NO_CHANGE, int8_t i2ssdPin = I2S_PIN_NO_CHANGE, int8_t i2sckPin = I2S_PIN_NO_CHANGE, int8_t mclkPin = I2S_PIN_NO_CHANGE) {
DEBUGSR_PRINTLN(F("I2SSource:: initialize()."));
if (i2swsPin != I2S_PIN_NO_CHANGE && i2ssdPin != I2S_PIN_NO_CHANGE) {
- if (!pinManager.allocatePin(i2swsPin, true, PinOwner::UM_Audioreactive) ||
- !pinManager.allocatePin(i2ssdPin, false, PinOwner::UM_Audioreactive)) { // #206
+ if (!PinManager::allocatePin(i2swsPin, true, PinOwner::UM_Audioreactive) ||
+ !PinManager::allocatePin(i2ssdPin, false, PinOwner::UM_Audioreactive)) { // #206
DEBUGSR_PRINTF("\nAR: Failed to allocate I2S pins: ws=%d, sd=%d\n", i2swsPin, i2ssdPin);
return;
}
@@ -203,7 +203,7 @@ class I2SSource : public AudioSource {
// i2ssckPin needs special treatment, since it might be unused on PDM mics
if (i2sckPin != I2S_PIN_NO_CHANGE) {
- if (!pinManager.allocatePin(i2sckPin, true, PinOwner::UM_Audioreactive)) {
+ if (!PinManager::allocatePin(i2sckPin, true, PinOwner::UM_Audioreactive)) {
DEBUGSR_PRINTF("\nAR: Failed to allocate I2S pins: sck=%d\n", i2sckPin);
return;
}
@@ -249,7 +249,7 @@ class I2SSource : public AudioSource {
// Reserve the master clock pin if provided
_mclkPin = mclkPin;
if (mclkPin != I2S_PIN_NO_CHANGE) {
- if(!pinManager.allocatePin(mclkPin, true, PinOwner::UM_Audioreactive)) {
+ if(!PinManager::allocatePin(mclkPin, true, PinOwner::UM_Audioreactive)) {
DEBUGSR_PRINTF("\nAR: Failed to allocate I2S pin: MCLK=%d\n", mclkPin);
return;
} else
@@ -307,11 +307,11 @@ class I2SSource : public AudioSource {
DEBUGSR_PRINTF("Failed to uninstall i2s driver: %d\n", err);
return;
}
- if (_pinConfig.ws_io_num != I2S_PIN_NO_CHANGE) pinManager.deallocatePin(_pinConfig.ws_io_num, PinOwner::UM_Audioreactive);
- if (_pinConfig.data_in_num != I2S_PIN_NO_CHANGE) pinManager.deallocatePin(_pinConfig.data_in_num, PinOwner::UM_Audioreactive);
- if (_pinConfig.bck_io_num != I2S_PIN_NO_CHANGE) pinManager.deallocatePin(_pinConfig.bck_io_num, PinOwner::UM_Audioreactive);
+ if (_pinConfig.ws_io_num != I2S_PIN_NO_CHANGE) PinManager::deallocatePin(_pinConfig.ws_io_num, PinOwner::UM_Audioreactive);
+ if (_pinConfig.data_in_num != I2S_PIN_NO_CHANGE) PinManager::deallocatePin(_pinConfig.data_in_num, PinOwner::UM_Audioreactive);
+ if (_pinConfig.bck_io_num != I2S_PIN_NO_CHANGE) PinManager::deallocatePin(_pinConfig.bck_io_num, PinOwner::UM_Audioreactive);
// Release the master clock pin
- if (_mclkPin != I2S_PIN_NO_CHANGE) pinManager.deallocatePin(_mclkPin, PinOwner::UM_Audioreactive);
+ if (_mclkPin != I2S_PIN_NO_CHANGE) PinManager::deallocatePin(_mclkPin, PinOwner::UM_Audioreactive);
}
virtual void getSamples(float *buffer, uint16_t num_samples) {
@@ -589,7 +589,7 @@ class I2SAdcSource : public I2SSource {
void initialize(int8_t audioPin, int8_t = I2S_PIN_NO_CHANGE, int8_t = I2S_PIN_NO_CHANGE, int8_t = I2S_PIN_NO_CHANGE) {
DEBUGSR_PRINTLN(F("I2SAdcSource:: initialize()."));
_myADCchannel = 0x0F;
- if(!pinManager.allocatePin(audioPin, false, PinOwner::UM_Audioreactive)) {
+ if(!PinManager::allocatePin(audioPin, false, PinOwner::UM_Audioreactive)) {
DEBUGSR_PRINTF("failed to allocate GPIO for audio analog input: %d\n", audioPin);
return;
}
@@ -717,7 +717,7 @@ class I2SAdcSource : public I2SSource {
}
void deinitialize() {
- pinManager.deallocatePin(_audioPin, PinOwner::UM_Audioreactive);
+ PinManager::deallocatePin(_audioPin, PinOwner::UM_Audioreactive);
_initialized = false;
_myADCchannel = 0x0F;
diff --git a/usermods/boblight/boblight.h b/usermods/boblight/boblight.h
index 2119f3e3e..16b43d838 100644
--- a/usermods/boblight/boblight.h
+++ b/usermods/boblight/boblight.h
@@ -1,459 +1,459 @@
-#pragma once
-
-#include "wled.h"
-
-/*
- * Usermod that implements BobLight "ambilight" protocol
- *
- * See the accompanying README.md file for more info.
- */
-
-#ifndef BOB_PORT
- #define BOB_PORT 19333 // Default boblightd port
-#endif
-
-class BobLightUsermod : public Usermod {
- typedef struct _LIGHT {
- char lightname[5];
- float hscan[2];
- float vscan[2];
- } light_t;
-
- private:
- unsigned long lastTime = 0;
- bool enabled = false;
- bool initDone = false;
-
- light_t *lights = nullptr;
- uint16_t numLights = 0; // 16 + 9 + 16 + 9
- uint16_t top, bottom, left, right; // will be filled in readFromConfig()
- uint16_t pct;
-
- WiFiClient bobClient;
- WiFiServer *bob;
- uint16_t bobPort = BOB_PORT;
-
- static const char _name[];
- static const char _enabled[];
-
- /*
- # boblight
- # Copyright (C) Bob 2009
- #
- # makeboblight.sh created by Adam Boeglin
- #
- # boblight is free software: you can redistribute it and/or modify it
- # under the terms of the GNU General Public License as published by the
- # Free Software Foundation, either version 3 of the License, or
- # (at your option) any later version.
- #
- # boblight is distributed in the hope that it will be useful, but
- # WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- # See the GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License along
- # with this program. If not, see .
- */
-
- // fills the lights[] array with position & depth of scan for each LED
- void fillBobLights(int bottom, int left, int top, int right, float pct_scan) {
-
- int lightcount = 0;
- int total = top+left+right+bottom;
- int bcount;
-
- if (total > strip.getLengthTotal()) {
- DEBUGUM_PRINTLN(F("BobLight: Too many lights."));
- return;
- }
-
- // start left part of bottom strip (clockwise direction, 1st half)
- if (bottom > 0) {
- bcount = 1;
- float brange = 100.0/bottom;
- float bcurrent = 50.0;
- if (bottom < top) {
- int diff = top - bottom;
- brange = 100.0/top;
- bcurrent -= (diff/2)*brange;
- }
- while (bcount <= bottom/2) {
- float btop = bcurrent - brange;
- String name = "b"+String(bcount);
- strncpy(lights[lightcount].lightname, name.c_str(), 4);
- lights[lightcount].hscan[0] = btop;
- lights[lightcount].hscan[1] = bcurrent;
- lights[lightcount].vscan[0] = 100 - pct_scan;
- lights[lightcount].vscan[1] = 100;
- lightcount+=1;
- bcurrent = btop;
- bcount+=1;
- }
- }
-
- // left side
- if (left > 0) {
- int lcount = 1;
- float lrange = 100.0/left;
- float lcurrent = 100.0;
- while (lcount <= left) {
- float ltop = lcurrent - lrange;
- String name = "l"+String(lcount);
- strncpy(lights[lightcount].lightname, name.c_str(), 4);
- lights[lightcount].hscan[0] = 0;
- lights[lightcount].hscan[1] = pct_scan;
- lights[lightcount].vscan[0] = ltop;
- lights[lightcount].vscan[1] = lcurrent;
- lightcount+=1;
- lcurrent = ltop;
- lcount+=1;
- }
- }
-
- // top side
- if (top > 0) {
- int tcount = 1;
- float trange = 100.0/top;
- float tcurrent = 0;
- while (tcount <= top) {
- float ttop = tcurrent + trange;
- String name = "t"+String(tcount);
- strncpy(lights[lightcount].lightname, name.c_str(), 4);
- lights[lightcount].hscan[0] = tcurrent;
- lights[lightcount].hscan[1] = ttop;
- lights[lightcount].vscan[0] = 0;
- lights[lightcount].vscan[1] = pct_scan;
- lightcount+=1;
- tcurrent = ttop;
- tcount+=1;
- }
- }
-
- // right side
- if (right > 0) {
- int rcount = 1;
- float rrange = 100.0/right;
- float rcurrent = 0;
- while (rcount <= right) {
- float rtop = rcurrent + rrange;
- String name = "r"+String(rcount);
- strncpy(lights[lightcount].lightname, name.c_str(), 4);
- lights[lightcount].hscan[0] = 100-pct_scan;
- lights[lightcount].hscan[1] = 100;
- lights[lightcount].vscan[0] = rcurrent;
- lights[lightcount].vscan[1] = rtop;
- lightcount+=1;
- rcurrent = rtop;
- rcount+=1;
- }
- }
-
- // right side of bottom strip (2nd half)
- if (bottom > 0) {
- float brange = 100.0/bottom;
- float bcurrent = 100;
- if (bottom < top) {
- brange = 100.0/top;
- }
- while (bcount <= bottom) {
- float btop = bcurrent - brange;
- String name = "b"+String(bcount);
- strncpy(lights[lightcount].lightname, name.c_str(), 4);
- lights[lightcount].hscan[0] = btop;
- lights[lightcount].hscan[1] = bcurrent;
- lights[lightcount].vscan[0] = 100 - pct_scan;
- lights[lightcount].vscan[1] = 100;
- lightcount+=1;
- bcurrent = btop;
- bcount+=1;
- }
- }
-
- numLights = lightcount;
-
- #if WLED_DEBUG_USERMODS
- DEBUGUM_PRINTLN(F("Fill light data: "));
- DEBUGUM_PRINTF_P(PSTR(" lights %d\n"), numLights);
- for (int i=0; i strip.getLengthTotal() ) {
- DEBUGUM_PRINTLN(F("BobLight: Too many lights."));
- DEBUGUM_PRINTF_P(PSTR("%d+%d+%d+%d>%d\n"), bottom, left, top, right, strip.getLengthTotal());
- totalLights = strip.getLengthTotal();
- top = bottom = (uint16_t) roundf((float)totalLights * 16.0f / 50.0f);
- left = right = (uint16_t) roundf((float)totalLights * 9.0f / 50.0f);
- }
- lights = new light_t[totalLights];
- if (lights) fillBobLights(bottom, left, top, right, float(pct)); // will fill numLights
- else enable(false);
- initDone = true;
- }
-
- void connected() override {
- // we can only start server when WiFi is connected
- if (!bob) bob = new WiFiServer(bobPort, 1);
- bob->begin();
- bob->setNoDelay(true);
- }
-
- void loop() override {
- if (!enabled || strip.isUpdating()) return;
- if (millis() - lastTime > 10) {
- lastTime = millis();
- pollBob();
- }
- }
-
- void enable(bool en) { enabled = en; }
-
-#ifndef WLED_DISABLE_MQTT
- /**
- * handling of MQTT message
- * topic only contains stripped topic (part after /wled/MAC)
- * topic should look like: /swipe with amessage of [up|down]
- */
- bool onMqttMessage(char* topic, char* payload) override {
- //if (strlen(topic) == 6 && strncmp_P(topic, PSTR("/subtopic"), 6) == 0) {
- // String action = payload;
- // if (action == "on") {
- // enable(true);
- // return true;
- // } else if (action == "off") {
- // enable(false);
- // return true;
- // }
- //}
- return false;
- }
-
- /**
- * subscribe to MQTT topic for controlling usermod
- */
- void onMqttConnect(bool sessionPresent) override {
- //char subuf[64];
- //if (mqttDeviceTopic[0] != 0) {
- // strcpy(subuf, mqttDeviceTopic);
- // strcat_P(subuf, PSTR("/subtopic"));
- // mqtt->subscribe(subuf, 0);
- //}
- }
-#endif
-
- void addToJsonInfo(JsonObject& root) override
- {
- JsonObject user = root["u"];
- if (user.isNull()) user = root.createNestedObject("u");
-
- JsonArray infoArr = user.createNestedArray(FPSTR(_name));
- String uiDomString = F("");
- infoArr.add(uiDomString);
- }
-
- /*
- * addToJsonState() can be used to add custom entries to the /json/state part of the JSON API (state object).
- * Values in the state object may be modified by connected clients
- */
- void addToJsonState(JsonObject& root) override
- {
- }
-
- /*
- * readFromJsonState() can be used to receive data clients send to the /json/state part of the JSON API (state object).
- * Values in the state object may be modified by connected clients
- */
- void readFromJsonState(JsonObject& root) override {
- if (!initDone) return; // prevent crash on boot applyPreset()
- bool en = enabled;
- JsonObject um = root[FPSTR(_name)];
- if (!um.isNull()) {
- if (um[FPSTR(_enabled)].is()) {
- en = um[FPSTR(_enabled)].as();
- } else {
- String str = um[FPSTR(_enabled)]; // checkbox -> off or on
- en = (bool)(str!="off"); // off is guaranteed to be present
- }
- if (en != enabled && lights) {
- enable(en);
- if (!enabled && bob && bob->hasClient()) {
- if (bobClient) bobClient.stop();
- bobClient = bob->available();
- BobClear();
- exitRealtime();
- }
- }
- }
- }
-
- void appendConfigData() override {
- //oappend(SET_F("dd=addDropdown('usermod','selectfield');"));
- //oappend(SET_F("addOption(dd,'1st value',0);"));
- //oappend(SET_F("addOption(dd,'2nd value',1);"));
- oappend(SET_F("addInfo('BobLight:top',1,'LEDs');")); // 0 is field type, 1 is actual field
- oappend(SET_F("addInfo('BobLight:bottom',1,'LEDs');")); // 0 is field type, 1 is actual field
- oappend(SET_F("addInfo('BobLight:left',1,'LEDs');")); // 0 is field type, 1 is actual field
- oappend(SET_F("addInfo('BobLight:right',1,'LEDs');")); // 0 is field type, 1 is actual field
- oappend(SET_F("addInfo('BobLight:pct',1,'Depth of scan [%]');")); // 0 is field type, 1 is actual field
- }
-
- void addToConfig(JsonObject& root) override {
- JsonObject umData = root.createNestedObject(FPSTR(_name));
- umData[FPSTR(_enabled)] = enabled;
- umData[ "port" ] = bobPort;
- umData[F("top")] = top;
- umData[F("bottom")] = bottom;
- umData[F("left")] = left;
- umData[F("right")] = right;
- umData[F("pct")] = pct;
- }
-
- bool readFromConfig(JsonObject& root) override {
- JsonObject umData = root[FPSTR(_name)];
- bool configComplete = !umData.isNull();
-
- bool en = enabled;
- configComplete &= getJsonValue(umData[FPSTR(_enabled)], en);
- enable(en);
-
- configComplete &= getJsonValue(umData[ "port" ], bobPort);
- configComplete &= getJsonValue(umData[F("bottom")], bottom, 16);
- configComplete &= getJsonValue(umData[F("top")], top, 16);
- configComplete &= getJsonValue(umData[F("left")], left, 9);
- configComplete &= getJsonValue(umData[F("right")], right, 9);
- configComplete &= getJsonValue(umData[F("pct")], pct, 5); // Depth of scan [%]
- pct = MIN(50,MAX(1,pct));
-
- uint16_t totalLights = bottom + left + top + right;
- if (initDone && numLights != totalLights) {
- if (lights) delete[] lights;
- setup();
- }
- return configComplete;
- }
-
- /*
- * handleOverlayDraw() is called just before every show() (LED strip update frame) after effects have set the colors.
- * Use this to blank out some LEDs or set them to a different color regardless of the set effect mode.
- * Commonly used for custom clocks (Cronixie, 7 segment)
- */
- void handleOverlayDraw() override {
- //strip.setPixelColor(0, RGBW32(0,0,0,0)) // set the first pixel to black
- }
-
- uint16_t getId() override { return USERMOD_ID_BOBLIGHT; }
-
-};
-
-// strings to reduce flash memory usage (used more than twice)
-const char BobLightUsermod::_name[] PROGMEM = "BobLight";
-const char BobLightUsermod::_enabled[] PROGMEM = "enabled";
-
-// main boblight handling (definition here prevents inlining)
-void BobLightUsermod::pollBob() {
-
- //check if there are any new clients
- if (bob && bob->hasClient()) {
- //find free/disconnected spot
- if (!bobClient || !bobClient.connected()) {
- if (bobClient) bobClient.stop();
- bobClient = bob->available();
- DEBUGUM_PRINTLN(F("Boblight: Client connected."));
- }
- //no free/disconnected spot so reject
- WiFiClient bobClientTmp = bob->available();
- bobClientTmp.stop();
- BobClear();
- exitRealtime();
- }
-
- //check clients for data
- if (bobClient && bobClient.connected()) {
- realtimeLock(realtimeTimeoutMs); // lock strip as we have a client connected
-
- //get data from the client
- while (bobClient.available()) {
- String input = bobClient.readStringUntil('\n');
- // DEBUGUM_PRINT(F("Client: ")); DEBUGUM_PRINTLN(input); // may be to stressful on Serial
- if (input.startsWith(F("hello"))) {
- DEBUGUM_PRINTLN(F("hello"));
- bobClient.print(F("hello\n"));
- } else if (input.startsWith(F("ping"))) {
- DEBUGUM_PRINTLN(F("ping 1"));
- bobClient.print(F("ping 1\n"));
- } else if (input.startsWith(F("get version"))) {
- DEBUGUM_PRINTLN(F("version 5"));
- bobClient.print(F("version 5\n"));
- } else if (input.startsWith(F("get lights"))) {
- char tmp[64];
- String answer = "";
- sprintf_P(tmp, PSTR("lights %d\n"), numLights);
- DEBUGUM_PRINT(tmp);
- answer.concat(tmp);
- for (int i=0; i ...
- input.remove(0,10);
- String tmp = input.substring(0,input.indexOf(' '));
-
- int light_id = -1;
- for (uint16_t i=0; iavailable();
- BobClear();
- }
- }
- }
-}
+#pragma once
+
+#include "wled.h"
+
+/*
+ * Usermod that implements BobLight "ambilight" protocol
+ *
+ * See the accompanying README.md file for more info.
+ */
+
+#ifndef BOB_PORT
+ #define BOB_PORT 19333 // Default boblightd port
+#endif
+
+class BobLightUsermod : public Usermod {
+ typedef struct _LIGHT {
+ char lightname[5];
+ float hscan[2];
+ float vscan[2];
+ } light_t;
+
+ private:
+ unsigned long lastTime = 0;
+ bool enabled = false;
+ bool initDone = false;
+
+ light_t *lights = nullptr;
+ uint16_t numLights = 0; // 16 + 9 + 16 + 9
+ uint16_t top, bottom, left, right; // will be filled in readFromConfig()
+ uint16_t pct;
+
+ WiFiClient bobClient;
+ WiFiServer *bob;
+ uint16_t bobPort = BOB_PORT;
+
+ static const char _name[];
+ static const char _enabled[];
+
+ /*
+ # boblight
+ # Copyright (C) Bob 2009
+ #
+ # makeboblight.sh created by Adam Boeglin
+ #
+ # boblight is free software: you can redistribute it and/or modify it
+ # under the terms of the GNU General Public License as published by the
+ # Free Software Foundation, either version 3 of the License, or
+ # (at your option) any later version.
+ #
+ # boblight is distributed in the hope that it will be useful, but
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ # See the GNU General Public License for more details.
+ #
+ # You should have received a copy of the GNU General Public License along
+ # with this program. If not, see .
+ */
+
+ // fills the lights[] array with position & depth of scan for each LED
+ void fillBobLights(int bottom, int left, int top, int right, float pct_scan) {
+
+ int lightcount = 0;
+ int total = top+left+right+bottom;
+ int bcount;
+
+ if (total > strip.getLengthTotal()) {
+ DEBUGUM_PRINTLN(F("BobLight: Too many lights."));
+ return;
+ }
+
+ // start left part of bottom strip (clockwise direction, 1st half)
+ if (bottom > 0) {
+ bcount = 1;
+ float brange = 100.0/bottom;
+ float bcurrent = 50.0;
+ if (bottom < top) {
+ int diff = top - bottom;
+ brange = 100.0/top;
+ bcurrent -= (diff/2)*brange;
+ }
+ while (bcount <= bottom/2) {
+ float btop = bcurrent - brange;
+ String name = "b"+String(bcount);
+ strncpy(lights[lightcount].lightname, name.c_str(), 4);
+ lights[lightcount].hscan[0] = btop;
+ lights[lightcount].hscan[1] = bcurrent;
+ lights[lightcount].vscan[0] = 100 - pct_scan;
+ lights[lightcount].vscan[1] = 100;
+ lightcount+=1;
+ bcurrent = btop;
+ bcount+=1;
+ }
+ }
+
+ // left side
+ if (left > 0) {
+ int lcount = 1;
+ float lrange = 100.0/left;
+ float lcurrent = 100.0;
+ while (lcount <= left) {
+ float ltop = lcurrent - lrange;
+ String name = "l"+String(lcount);
+ strncpy(lights[lightcount].lightname, name.c_str(), 4);
+ lights[lightcount].hscan[0] = 0;
+ lights[lightcount].hscan[1] = pct_scan;
+ lights[lightcount].vscan[0] = ltop;
+ lights[lightcount].vscan[1] = lcurrent;
+ lightcount+=1;
+ lcurrent = ltop;
+ lcount+=1;
+ }
+ }
+
+ // top side
+ if (top > 0) {
+ int tcount = 1;
+ float trange = 100.0/top;
+ float tcurrent = 0;
+ while (tcount <= top) {
+ float ttop = tcurrent + trange;
+ String name = "t"+String(tcount);
+ strncpy(lights[lightcount].lightname, name.c_str(), 4);
+ lights[lightcount].hscan[0] = tcurrent;
+ lights[lightcount].hscan[1] = ttop;
+ lights[lightcount].vscan[0] = 0;
+ lights[lightcount].vscan[1] = pct_scan;
+ lightcount+=1;
+ tcurrent = ttop;
+ tcount+=1;
+ }
+ }
+
+ // right side
+ if (right > 0) {
+ int rcount = 1;
+ float rrange = 100.0/right;
+ float rcurrent = 0;
+ while (rcount <= right) {
+ float rtop = rcurrent + rrange;
+ String name = "r"+String(rcount);
+ strncpy(lights[lightcount].lightname, name.c_str(), 4);
+ lights[lightcount].hscan[0] = 100-pct_scan;
+ lights[lightcount].hscan[1] = 100;
+ lights[lightcount].vscan[0] = rcurrent;
+ lights[lightcount].vscan[1] = rtop;
+ lightcount+=1;
+ rcurrent = rtop;
+ rcount+=1;
+ }
+ }
+
+ // right side of bottom strip (2nd half)
+ if (bottom > 0) {
+ float brange = 100.0/bottom;
+ float bcurrent = 100;
+ if (bottom < top) {
+ brange = 100.0/top;
+ }
+ while (bcount <= bottom) {
+ float btop = bcurrent - brange;
+ String name = "b"+String(bcount);
+ strncpy(lights[lightcount].lightname, name.c_str(), 4);
+ lights[lightcount].hscan[0] = btop;
+ lights[lightcount].hscan[1] = bcurrent;
+ lights[lightcount].vscan[0] = 100 - pct_scan;
+ lights[lightcount].vscan[1] = 100;
+ lightcount+=1;
+ bcurrent = btop;
+ bcount+=1;
+ }
+ }
+
+ numLights = lightcount;
+
+ #if WLED_DEBUG_USERMODS
+ DEBUGUM_PRINTLN(F("Fill light data: "));
+ DEBUGUM_PRINTF_P(PSTR(" lights %d\n"), numLights);
+ for (int i=0; i strip.getLengthTotal() ) {
+ DEBUGUM_PRINTLN(F("BobLight: Too many lights."));
+ DEBUGUM_PRINTF_P(PSTR("%d+%d+%d+%d>%d\n"), bottom, left, top, right, strip.getLengthTotal());
+ totalLights = strip.getLengthTotal();
+ top = bottom = (uint16_t) roundf((float)totalLights * 16.0f / 50.0f);
+ left = right = (uint16_t) roundf((float)totalLights * 9.0f / 50.0f);
+ }
+ lights = new light_t[totalLights];
+ if (lights) fillBobLights(bottom, left, top, right, float(pct)); // will fill numLights
+ else enable(false);
+ initDone = true;
+ }
+
+ void connected() override {
+ // we can only start server when WiFi is connected
+ if (!bob) bob = new WiFiServer(bobPort, 1);
+ bob->begin();
+ bob->setNoDelay(true);
+ }
+
+ void loop() override {
+ if (!enabled || strip.isUpdating()) return;
+ if (millis() - lastTime > 10) {
+ lastTime = millis();
+ pollBob();
+ }
+ }
+
+ void enable(bool en) { enabled = en; }
+
+#ifndef WLED_DISABLE_MQTT
+ /**
+ * handling of MQTT message
+ * topic only contains stripped topic (part after /wled/MAC)
+ * topic should look like: /swipe with amessage of [up|down]
+ */
+ bool onMqttMessage(char* topic, char* payload) override {
+ //if (strlen(topic) == 6 && strncmp_P(topic, PSTR("/subtopic"), 6) == 0) {
+ // String action = payload;
+ // if (action == "on") {
+ // enable(true);
+ // return true;
+ // } else if (action == "off") {
+ // enable(false);
+ // return true;
+ // }
+ //}
+ return false;
+ }
+
+ /**
+ * subscribe to MQTT topic for controlling usermod
+ */
+ void onMqttConnect(bool sessionPresent) override {
+ //char subuf[64];
+ //if (mqttDeviceTopic[0] != 0) {
+ // strcpy(subuf, mqttDeviceTopic);
+ // strcat_P(subuf, PSTR("/subtopic"));
+ // mqtt->subscribe(subuf, 0);
+ //}
+ }
+#endif
+
+ void addToJsonInfo(JsonObject& root) override
+ {
+ JsonObject user = root["u"];
+ if (user.isNull()) user = root.createNestedObject("u");
+
+ JsonArray infoArr = user.createNestedArray(FPSTR(_name));
+ String uiDomString = F("");
+ infoArr.add(uiDomString);
+ }
+
+ /*
+ * addToJsonState() can be used to add custom entries to the /json/state part of the JSON API (state object).
+ * Values in the state object may be modified by connected clients
+ */
+ void addToJsonState(JsonObject& root) override
+ {
+ }
+
+ /*
+ * readFromJsonState() can be used to receive data clients send to the /json/state part of the JSON API (state object).
+ * Values in the state object may be modified by connected clients
+ */
+ void readFromJsonState(JsonObject& root) override {
+ if (!initDone) return; // prevent crash on boot applyPreset()
+ bool en = enabled;
+ JsonObject um = root[FPSTR(_name)];
+ if (!um.isNull()) {
+ if (um[FPSTR(_enabled)].is()) {
+ en = um[FPSTR(_enabled)].as();
+ } else {
+ String str = um[FPSTR(_enabled)]; // checkbox -> off or on
+ en = (bool)(str!="off"); // off is guaranteed to be present
+ }
+ if (en != enabled && lights) {
+ enable(en);
+ if (!enabled && bob && bob->hasClient()) {
+ if (bobClient) bobClient.stop();
+ bobClient = bob->available();
+ BobClear();
+ exitRealtime();
+ }
+ }
+ }
+ }
+
+ void appendConfigData() override {
+ //oappend(SET_F("dd=addDropdown('usermod','selectfield');"));
+ //oappend(SET_F("addOption(dd,'1st value',0);"));
+ //oappend(SET_F("addOption(dd,'2nd value',1);"));
+ oappend(SET_F("addInfo('BobLight:top',1,'LEDs');")); // 0 is field type, 1 is actual field
+ oappend(SET_F("addInfo('BobLight:bottom',1,'LEDs');")); // 0 is field type, 1 is actual field
+ oappend(SET_F("addInfo('BobLight:left',1,'LEDs');")); // 0 is field type, 1 is actual field
+ oappend(SET_F("addInfo('BobLight:right',1,'LEDs');")); // 0 is field type, 1 is actual field
+ oappend(SET_F("addInfo('BobLight:pct',1,'Depth of scan [%]');")); // 0 is field type, 1 is actual field
+ }
+
+ void addToConfig(JsonObject& root) override {
+ JsonObject umData = root.createNestedObject(FPSTR(_name));
+ umData[FPSTR(_enabled)] = enabled;
+ umData[ "port" ] = bobPort;
+ umData[F("top")] = top;
+ umData[F("bottom")] = bottom;
+ umData[F("left")] = left;
+ umData[F("right")] = right;
+ umData[F("pct")] = pct;
+ }
+
+ bool readFromConfig(JsonObject& root) override {
+ JsonObject umData = root[FPSTR(_name)];
+ bool configComplete = !umData.isNull();
+
+ bool en = enabled;
+ configComplete &= getJsonValue(umData[FPSTR(_enabled)], en);
+ enable(en);
+
+ configComplete &= getJsonValue(umData[ "port" ], bobPort);
+ configComplete &= getJsonValue(umData[F("bottom")], bottom, 16);
+ configComplete &= getJsonValue(umData[F("top")], top, 16);
+ configComplete &= getJsonValue(umData[F("left")], left, 9);
+ configComplete &= getJsonValue(umData[F("right")], right, 9);
+ configComplete &= getJsonValue(umData[F("pct")], pct, 5); // Depth of scan [%]
+ pct = MIN(50,MAX(1,pct));
+
+ uint16_t totalLights = bottom + left + top + right;
+ if (initDone && numLights != totalLights) {
+ if (lights) delete[] lights;
+ setup();
+ }
+ return configComplete;
+ }
+
+ /*
+ * handleOverlayDraw() is called just before every show() (LED strip update frame) after effects have set the colors.
+ * Use this to blank out some LEDs or set them to a different color regardless of the set effect mode.
+ * Commonly used for custom clocks (Cronixie, 7 segment)
+ */
+ void handleOverlayDraw() override {
+ //strip.setPixelColor(0, RGBW32(0,0,0,0)) // set the first pixel to black
+ }
+
+ uint16_t getId() override { return USERMOD_ID_BOBLIGHT; }
+
+};
+
+// strings to reduce flash memory usage (used more than twice)
+const char BobLightUsermod::_name[] PROGMEM = "BobLight";
+const char BobLightUsermod::_enabled[] PROGMEM = "enabled";
+
+// main boblight handling (definition here prevents inlining)
+void BobLightUsermod::pollBob() {
+
+ //check if there are any new clients
+ if (bob && bob->hasClient()) {
+ //find free/disconnected spot
+ if (!bobClient || !bobClient.connected()) {
+ if (bobClient) bobClient.stop();
+ bobClient = bob->available();
+ DEBUGUM_PRINTLN(F("Boblight: Client connected."));
+ }
+ //no free/disconnected spot so reject
+ WiFiClient bobClientTmp = bob->available();
+ bobClientTmp.stop();
+ BobClear();
+ exitRealtime();
+ }
+
+ //check clients for data
+ if (bobClient && bobClient.connected()) {
+ realtimeLock(realtimeTimeoutMs); // lock strip as we have a client connected
+
+ //get data from the client
+ while (bobClient.available()) {
+ String input = bobClient.readStringUntil('\n');
+ // DEBUGUM_PRINT(F("Client: ")); DEBUGUM_PRINTLN(input); // may be to stressful on Serial
+ if (input.startsWith(F("hello"))) {
+ DEBUGUM_PRINTLN(F("hello"));
+ bobClient.print(F("hello\n"));
+ } else if (input.startsWith(F("ping"))) {
+ DEBUGUM_PRINTLN(F("ping 1"));
+ bobClient.print(F("ping 1\n"));
+ } else if (input.startsWith(F("get version"))) {
+ DEBUGUM_PRINTLN(F("version 5"));
+ bobClient.print(F("version 5\n"));
+ } else if (input.startsWith(F("get lights"))) {
+ char tmp[64];
+ String answer = "";
+ sprintf_P(tmp, PSTR("lights %d\n"), numLights);
+ DEBUGUM_PRINT(tmp);
+ answer.concat(tmp);
+ for (int i=0; i ...
+ input.remove(0,10);
+ String tmp = input.substring(0,input.indexOf(' '));
+
+ int light_id = -1;
+ for (uint16_t i=0; iavailable();
+ BobClear();
+ }
+ }
+ }
+}
diff --git a/usermods/mpu6050_imu/readme.md b/usermods/mpu6050_imu/readme.md
index b804ba602..c324738d6 100644
--- a/usermods/mpu6050_imu/readme.md
+++ b/usermods/mpu6050_imu/readme.md
@@ -86,6 +86,6 @@ Example **usermods_list.cpp**:
void registerUsermods()
{
- usermods.add(new MPU6050Driver());
+ UsermodManager::add(new MPU6050Driver());
}
```
diff --git a/usermods/mpu6050_imu/usermod_gyro_surge.h b/usermods/mpu6050_imu/usermod_gyro_surge.h
index c49d930ff..c19358de7 100644
--- a/usermods/mpu6050_imu/usermod_gyro_surge.h
+++ b/usermods/mpu6050_imu/usermod_gyro_surge.h
@@ -163,7 +163,7 @@ class GyroSurge : public Usermod {
void loop() {
// get IMU data
um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_IMU)) {
+ if (!UsermodManager::getUMData(&um_data, USERMOD_ID_IMU)) {
// Apply max
strip.getSegment(0).fadeToBlackBy(max);
return;
diff --git a/usermods/mpu6050_imu/usermod_mpu6050_imu.h b/usermods/mpu6050_imu/usermod_mpu6050_imu.h
index 7d6215436..24d5e2565 100644
--- a/usermods/mpu6050_imu/usermod_mpu6050_imu.h
+++ b/usermods/mpu6050_imu/usermod_mpu6050_imu.h
@@ -148,7 +148,7 @@ class MPU6050Driver : public Usermod {
if (i2c_scl<0 || i2c_sda<0) { DEBUGUM_PRINTLN(F("MPU6050: I2C is no good.")); return; }
// Check the interrupt pin
if (config.interruptPin >= 0) {
- irqBound = pinManager.allocatePin(config.interruptPin, false, PinOwner::UM_IMU);
+ irqBound = PinManager::allocatePin(config.interruptPin, false, PinOwner::UM_IMU);
if (!irqBound) { DEBUGUM_PRINTLN(F("MPU6050: IRQ pin already in use.")); return; }
pinMode(config.interruptPin, INPUT);
};
@@ -392,7 +392,7 @@ class MPU6050Driver : public Usermod {
// Previously loaded and config changed
if (irqBound && ((old_cfg.interruptPin != config.interruptPin) || !config.enabled)) {
detachInterrupt(old_cfg.interruptPin);
- pinManager.deallocatePin(old_cfg.interruptPin, PinOwner::UM_IMU);
+ PinManager::deallocatePin(old_cfg.interruptPin, PinOwner::UM_IMU);
irqBound = false;
}
diff --git a/usermods/mqtt_switch_v2/README.md b/usermods/mqtt_switch_v2/README.md
index 744d7fe3c..382f72d0e 100644
--- a/usermods/mqtt_switch_v2/README.md
+++ b/usermods/mqtt_switch_v2/README.md
@@ -19,7 +19,7 @@ Example `usermods_list.cpp`:
void registerUsermods()
{
- usermods.add(new UsermodMqttSwitch());
+ UsermodManager::add(new UsermodMqttSwitch());
}
```
@@ -33,7 +33,7 @@ board = esp12e
platform = ${common.platform_wled_default}
board_build.ldscript = ${common.ldscript_4m1m}
build_flags = ${common.build_flags_esp8266}
- -D LEDPIN=3
+ -D DATA_PINS=3
-D BTNPIN=4
-D RLYPIN=12
-D RLYMDE=1
diff --git a/usermods/multi_relay/readme.md b/usermods/multi_relay/readme.md
index 24dd394b8..eaa069ae7 100644
--- a/usermods/multi_relay/readme.md
+++ b/usermods/multi_relay/readme.md
@@ -41,7 +41,7 @@ When a relay is switched, a message is published:
## Usermod installation
-1. Register the usermod by adding `#include "../usermods/multi_relay/usermod_multi_relay.h"` at the top and `usermods.add(new MultiRelay());` at the bottom of `usermods_list.cpp`.
+1. Register the usermod by adding `#include "../usermods/multi_relay/usermod_multi_relay.h"` at the top and `UsermodManager::add(new MultiRelay());` at the bottom of `usermods_list.cpp`.
or
2. Use `#define USERMOD_MULTI_RELAY` in wled.h or `-D USERMOD_MULTI_RELAY` in your platformio.ini
@@ -90,9 +90,9 @@ void registerUsermods()
* || || ||
* \/ \/ \/
*/
- //usermods.add(new MyExampleUsermod());
- //usermods.add(new UsermodTemperature());
- usermods.add(new MultiRelay());
+ //UsermodManager::add(new MyExampleUsermod());
+ //UsermodManager::add(new UsermodTemperature());
+ UsermodManager::add(new MultiRelay());
}
```
diff --git a/usermods/multi_relay/usermod_multi_relay.h b/usermods/multi_relay/usermod_multi_relay.h
index fe021fbf2..b833ffacd 100644
--- a/usermods/multi_relay/usermod_multi_relay.h
+++ b/usermods/multi_relay/usermod_multi_relay.h
@@ -516,7 +516,7 @@ void MultiRelay::setup() {
if (!_relay[i].external) _relay[i].state = !offMode;
state |= (uint8_t)(_relay[i].invert ? !_relay[i].state : _relay[i].state) << pin;
} else if (_relay[i].pin<100 && _relay[i].pin>=0) {
- if (pinManager.allocatePin(_relay[i].pin,true, PinOwner::UM_MultiRelay)) {
+ if (PinManager::allocatePin(_relay[i].pin,true, PinOwner::UM_MultiRelay)) {
if (!_relay[i].external) _relay[i].state = !offMode;
switchRelay(i, _relay[i].state);
_relay[i].active = false;
@@ -817,7 +817,7 @@ bool MultiRelay::readFromConfig(JsonObject &root) {
// deallocate all pins 1st
for (int i=0; i=0 && oldPin[i]<100) {
- pinManager.deallocatePin(oldPin[i], PinOwner::UM_MultiRelay);
+ PinManager::deallocatePin(oldPin[i], PinOwner::UM_MultiRelay);
}
// allocate new pins
setup();
diff --git a/usermods/pixels_dice_tray/README.md b/usermods/pixels_dice_tray/README.md
new file mode 100644
index 000000000..6daa4fa72
--- /dev/null
+++ b/usermods/pixels_dice_tray/README.md
@@ -0,0 +1,254 @@
+# A mod for using Pixel Dice with ESP32S3 boards
+
+A usermod to connect to and handle rolls from [Pixels Dice](https://gamewithpixels.com/). WLED acts as both an display controller, and a gateway to connect the die to the Wifi network.
+
+High level features:
+
+* Several LED effects that respond to die rolls
+ * Effect color and parameters can be modified like any other effect
+ * Different die can be set to control different segments
+* An optional GUI on a TFT screen with custom button controls
+ * Gives die connection and roll status
+ * Can do basic LED effect controls
+ * Can display custom info for different roll types (ie. RPG stats/spell info)
+* Publish MQTT events from die rolls
+ * Also report the selected roll type
+* Control settings through the WLED web
+
+See for a write up of the design process of the hardware and software I used this with.
+
+I also set up a custom web installer for the usermod at for 8MB ESP32-S3 boards.
+
+## Table of Contents
+
+
+* [Demos](#demos)
+ + [TFT GUI](#tft-gui)
+ + [Multiple Die Controlling Different Segments](#multiple-die-controlling-different-segments)
+* [Hardware](#hardware)
+* [Library used](#library-used)
+* [Compiling](#compiling)
+ + [platformio_override.ini](#platformio_overrideini)
+ + [Manual platformio.ini changes](#manual-platformioini-changes)
+* [Configuration](#configuration)
+ + [Controlling Dice Connections](#controlling-dice-connections)
+ + [Controlling Effects](#controlling-effects)
+ - [DieSimple](#diesimple)
+ - [DiePulse](#diepulse)
+ - [DieCheck](#diecheck)
+* [TFT GUI](#tft-gui-1)
+ + [Status](#status)
+ + [Effect Menu](#effect-menu)
+ + [Roll Info](#roll-info)
+* [MQTT](#mqtt)
+* [Potential Modifications and Additional Features](#potential-modifications-and-additional-features)
+* [ESP32 Issues](#esp32-issues)
+
+
+
+## Demos
+
+
+### TFT GUI
+[](https://youtu.be/VNsHq1TbiW8)
+
+
+### Multiple Die Controlling Different Segments
+[](https://youtu.be/oCDr44C-qwM)
+
+
+## Hardware
+
+The main purpose of this mod is to support [Pixels Dice](https://gamewithpixels.com/). The board acts as a BLE central for the dice acting as peripherals. While any ESP32 variant with BLE capabilities should be able to support this usermod, in practice I found that the original ESP32 did not work. See [ESP32 Issues](#esp32-issues) for a deeper dive.
+
+The only other ESP32 variant I tested was the ESP32-S3, which worked without issue. While there's still concern over the contention between BLE and WiFi for the radio, I haven't noticed any performance impact in practice. The only special behavior that was needed was setting `noWifiSleep = false;` to allow the OS to sleep the WiFi when the BLE is active.
+
+In addition, the BLE stack requires a lot of flash. This build takes 1.9MB with the TFT code, or 1.85MB without it. This makes it too big to fit in the `tools/WLED_ESP32_4MB_256KB_FS.csv` partition layout, and I needed to make a `WLED_ESP32_4MB_64KB_FS.csv` to even fit on 4MB devices. This only has 64KB of file system space, which is functional, but users with more than a handful of presets would run into problems with 64KB only. This means that while 4MB can be supported, larger flash sizes are needed for full functionality.
+
+The basic build of this usermod doesn't require any special hardware. However, the LCD status GUI was specifically designed for the [LILYGO T-QT Pro](https://www.lilygo.cc/products/t-qt-pro).
+
+It should be relatively easy to support other displays, though the positioning of the text may need to be adjusted.
+
+
+## Library used
+
+[axlan/pixels-dice-interface](https://github.com/axlan/arduino-pixels-dice)
+
+Optional: [Bodmer/TFT_eSPI](https://github.com/Bodmer/TFT_eSPI)
+
+
+## Compiling
+
+
+### platformio_override.ini
+
+Copy and update the example `platformio_override.ini.sample` to the root directory of your particular build (renaming it `platformio_override.ini`).
+This file should be placed in the same directory as `platformio.ini`. This file is set up for the [LILYGO T-QT Pro](https://www.lilygo.cc/products/t-qt-pro). Specifically, the 8MB flash version. See the next section for notes on setting the build flags. For other boards, you may want to use a different environment as the basis.
+
+
+### Manual platformio.ini changes
+
+Using the `platformio_override.ini.sample` as a reference, you'll need to update the `build_flags` and `lib_deps` of the target you're building for.
+
+If you don't need the TFT GUI, you just need to add
+
+
+```ini
+...
+build_flags =
+ ...
+ -D USERMOD_PIXELS_DICE_TRAY ;; Enables this UserMod
+lib_deps =
+ ...
+ ESP32 BLE Arduino
+ axlan/pixels-dice-interface @ 1.2.0
+...
+```
+
+For the TFT support you'll need to add `Bodmer/TFT_eSPI` to `lib_deps`, and all of the required TFT parameters to `build_flags` (see `platformio_override.ini.sample`).
+
+Save the `platformio.ini` file, and perform the desired build.
+
+
+## Configuration
+
+In addition to configuring which dice to connect to, this mod uses a lot of the built in WLED features:
+* The LED segments, effects, and customization parameters
+* The buttons for the UI
+* The MQTT settings for reporting the dice rolls
+
+
+### Controlling Dice Connections
+
+**NOTE:** To configure the die itself (set its name, the die LEDs, etc.), you still need to use the Pixels Dice phone App.
+
+The usermods settings page has the configuration for controlling the dice and the display:
+ * Ble Scan Duration - The time to look for BLE broadcasts before taking a break
+ * Rotation - If display used, set this parameter to rotate the display.
+
+The main setting here though are the Die 0 and 1 settings. A slot is disabled if it's left blank. Putting the name of a die will make that slot only connect to die with that name. Alteratively, if the name is set to `*` the slot will use the first unassociated die it sees. Saving the configuration while a wildcard slot is connected to a die will replace the `*` with that die's name.
+
+**NOTE:** The slot a die is in is important since that's how they're identified for controlling LED effects. Effects can be set to respond to die 0, 1, or any.
+
+The configuration also includes the pins configured in the TFT build flags. These are just so the UI recognizes that these pins are being used. The [Bodmer/TFT_eSPI](https://github.com/Bodmer/TFT_eSPI) requires that these are set at build time and changing these values is ignored.
+
+
+### Controlling Effects
+
+The die effects for rolls take advantage of most of the normal WLED effect features: .
+
+If you have different segments, they can have different effects driven by the same die, or different dice.
+
+
+#### DieSimple
+Turn off LEDs while rolling, than light up solid LEDs in proportion to die roll.
+
+* Color 1 - Selects the "good" color that increases based on the die roll
+* Color 2 - Selects the "background" color for the rest of the segment
+* Custom 1 - Sets which die should control this effect. If the value is greater then 1, it will respond to both dice.
+
+
+#### DiePulse
+Play `breath` effect while rolling, than apply `blend` effect in proportion to die roll.
+
+* Color 1 - See `breath` and `blend`
+* Color 2 - Selects the "background" color for the rest of the segment
+* Palette - See `breath` and `blend`
+* Custom 1 - Sets which die should control this effect. If the value is greater then 1, it will respond to both dice.
+
+
+#### DieCheck
+Play `running` effect while rolling, than apply `glitter` effect if roll passes threshold, or `gravcenter` if roll is below.
+
+* Color 1 - See `glitter` and `gravcenter`, used as first color for `running`
+* Color 2 - See `glitter` and `gravcenter`
+* Color 3 - Used as second color for `running`
+* Palette - See `glitter` and `gravcenter`
+* Custom 1 - Sets which die should control this effect. If the value is greater then 1, it will respond to both dice.
+* Custom 2 - Sets the threshold for success animation. For example if 10, success plays on rolls of 10 or above.
+
+
+## TFT GUI
+
+The optional TFT GUI currently supports 3 "screens":
+1. Status
+2. Effect Control
+3. Roll Info
+
+Double pressing the right button goes forward through the screens, and double pressing left goes back (with rollover).
+
+
+### Status
+
+
+Shows the status of each die slot (0 on top and 1 on the bottom).
+
+If a die is connected, its roll stats and battery status are shown. The rolls will continue to be tracked even when viewing other screens.
+
+Long press either button to clear the roll stats.
+
+
+### Effect Menu
+
+
+Allows limited customization of the die effect for the currently selected LED segment.
+
+The left button moves the cursor (blue box) up and down the options for the current field.
+
+The right button updates the value for the field.
+
+The first field is the effect. Updating it will switch between the die effects.
+
+The DieCheck effect has an additional field "PASS". Pressing the right button on this field will copy the current face up value from the most recently rolled die.
+
+Long pressing either value will set the effect parameters (color, palette, controlling dice, etc.) to a default set of values.
+
+
+### Roll Info
+
+
+Sets the "roll type" reported by MQTT events and can show additional info.
+
+Pressing the right button goes forward through the rolls, and double pressing left goes back (with rollover).
+
+The names and info for the rolls are generated from the `usermods/pixels_dice_tray/generate_roll_info.py` script. It updates `usermods/pixels_dice_tray/roll_info.h` with code generated from a simple markdown language.
+
+
+## MQTT
+
+See for general MQTT configuration for WLED.
+
+The usermod produces two types of events
+
+* `$mqttDeviceTopic/dice/roll` - JSON that reports each die roll event with the following keys.
+ - name - The name of the die that triggered the event
+ - state - Integer indicating the die state `[UNKNOWN = 0, ON_FACE = 1, HANDLING = 2, ROLLING = 3, CROOKED = 4]`
+ - val - The value on the die's face. For d20 1-20
+ - time - The uptime timestamp the roll was received in milliseconds.
+* `$mqttDeviceTopic/dice/roll_label` - A string that indicates the roll type selected in the [Roll Info](#roll-info) TFT menu.
+
+Where `$mqttDeviceTopic` is the topic set in the WLED MQTT configuration.
+
+Events can be logged to a CSV file using the script `usermods/pixels_dice_tray/mqtt_client/mqtt_logger.py`. These can then be used to generate interactive HTML plots with `usermods/pixels_dice_tray/mqtt_client/mqtt_plotter.py`.
+
+
+
+
+## Potential Modifications and Additional Features
+
+This usermod is in support of a particular dice box project, but it would be fairly straightforward to extend for other applications.
+* Add more dice - There's no reason that several more dice slots couldn't be allowed. In addition LED effects that use multiple dice could be added (e.g. a contested roll).
+* Better support for die other then d20's. There's a few places where I assume the die is a d20. It wouldn't be that hard to support arbitrary die sizes.
+* TFT Menu - The menu system is pretty extensible. I put together some basic things I found useful, and was mainly limited by the screen size.
+* Die controlled UI - I originally planned to make an alternative UI that used the die directly. You'd press a button, and the current face up on the die would trigger an action. This was an interesting idea, but didn't seem to practical since I could more flexibly reproduce this by responding to the dice MQTT events.
+
+
+## ESP32 Issues
+
+I really wanted to have this work on the original ESP32 boards to lower the barrier to entry, but there were several issues.
+
+First there are the issues with the partition sizes for 4MB mentioned in the [Hardware](#hardware) section.
+
+The bigger issue is that the build consistently crashes if the BLE scan task starts up. It's a bit unclear to me exactly what is failing since the backtrace is showing an exception in `new[]` memory allocation in the UDP stack. There appears to be a ton of heap available, so my guess is that this is a synchronization issue of some sort from the tasks running in parallel. I tried messing with the task core affinity a bit but didn't make much progress. It's not really clear what difference between the ESP32S3 and ESP32 would cause this difference.
+
+At the end of the day, its generally not advised to run the BLE and Wifi at the same time anyway (though it appears to work without issue on the ESP32S3). Probably the best path forward would be to switch between them. This would actually not be too much of an issue, since discovering and getting data from the die should be possible to do in bursts (at least in theory).
diff --git a/usermods/pixels_dice_tray/WLED_ESP32_4MB_64KB_FS.csv b/usermods/pixels_dice_tray/WLED_ESP32_4MB_64KB_FS.csv
new file mode 100644
index 000000000..ffa509e6d
--- /dev/null
+++ b/usermods/pixels_dice_tray/WLED_ESP32_4MB_64KB_FS.csv
@@ -0,0 +1,6 @@
+# Name, Type, SubType, Offset, Size, Flags
+nvs, data, nvs, 0x9000, 0x5000,
+otadata, data, ota, 0xe000, 0x2000,
+app0, app, ota_0, 0x10000, 0x1F0000,
+app1, app, ota_1, 0x200000,0x1F0000,
+spiffs, data, spiffs, 0x3F0000,0x10000,
\ No newline at end of file
diff --git a/usermods/pixels_dice_tray/dice_state.h b/usermods/pixels_dice_tray/dice_state.h
new file mode 100644
index 000000000..eee4759fd
--- /dev/null
+++ b/usermods/pixels_dice_tray/dice_state.h
@@ -0,0 +1,76 @@
+/**
+ * Structs for passing around usermod state
+ */
+#pragma once
+
+#include // https://github.com/axlan/arduino-pixels-dice
+
+/**
+ * Here's how the rolls are tracked in this usermod.
+ * 1. The arduino-pixels-dice library reports rolls and state mapped to
+ * PixelsDieID.
+ * 2. The "configured_die_names" sets which die to connect to and their order.
+ * 3. The rest of the usermod references the die by this order (ie. the LED
+ * effect is triggered for rolls for die 0).
+ */
+
+static constexpr size_t MAX_NUM_DICE = 2;
+static constexpr uint8_t INVALID_ROLL_VALUE = 0xFF;
+
+/**
+ * The state of the connected die, and new events since the last update.
+ */
+struct DiceUpdate {
+ // The vectors to hold results queried from the library
+ // Since vectors allocate data, it's more efficient to keep reusing an instance
+ // instead of declaring them on the stack.
+ std::vector dice_list;
+ pixels::RollUpdates roll_updates;
+ pixels::BatteryUpdates battery_updates;
+ // The PixelsDieID for each dice index. 0 if the die isn't connected.
+ // The ordering here matches configured_die_names.
+ std::array connected_die_ids{0, 0};
+};
+
+struct DiceSettings {
+ // The mapping of dice names, to the index of die used for effects (ie. The
+ // die named "Cat" is die 0). BLE discovery will stop when all the dice are
+ // found. The die slot is disabled if the name is empty. If the name is "*",
+ // the slot will use the first unassociated die it sees.
+ std::array configured_die_names{"*", "*"};
+ // A label set to describe the next die roll. Index into GetRollName().
+ uint8_t roll_label = INVALID_ROLL_VALUE;
+};
+
+// These are updated in the main loop, but accessed by the effect functions as
+// well. My understand is that both of these accesses should be running on the
+// same "thread/task" since WLED doesn't directly create additional threads. The
+// exception would be network callbacks and interrupts, but I don't believe
+// these accesses are triggered by those. If synchronization was needed, I could
+// look at the example in `requestJSONBufferLock()`.
+std::array last_die_events;
+
+static pixels::RollEvent GetLastRoll() {
+ pixels::RollEvent last_roll;
+ for (const auto& event : last_die_events) {
+ if (event.timestamp > last_roll.timestamp) {
+ last_roll = event;
+ }
+ }
+ return last_roll;
+}
+
+/**
+ * Returns true if the container has an item that matches the value.
+ */
+template
+static bool Contains(const C& container, T value) {
+ return std::find(container.begin(), container.end(), value) !=
+ container.end();
+}
+
+// These aren't known until runtime since they're being added dynamically.
+static uint8_t FX_MODE_SIMPLE_D20 = 0xFF;
+static uint8_t FX_MODE_PULSE_D20 = 0xFF;
+static uint8_t FX_MODE_CHECK_D20 = 0xFF;
+std::array DIE_LED_MODES = {0xFF, 0xFF, 0xFF};
diff --git a/usermods/pixels_dice_tray/generate_roll_info.py b/usermods/pixels_dice_tray/generate_roll_info.py
new file mode 100644
index 000000000..589597086
--- /dev/null
+++ b/usermods/pixels_dice_tray/generate_roll_info.py
@@ -0,0 +1,230 @@
+'''
+File for generating roll labels and info text for the InfoMenu.
+
+Uses a very limited markdown language for styling text.
+'''
+import math
+from pathlib import Path
+import re
+from textwrap import indent
+
+# Variables for calculating values in info text
+CASTER_LEVEL = 9
+SPELL_ABILITY_MOD = 6
+BASE_ATK_BONUS = 6
+SIZE_BONUS = 1
+STR_BONUS = 2
+DEX_BONUS = -1
+
+# TFT library color values
+TFT_BLACK =0x0000
+TFT_NAVY =0x000F
+TFT_DARKGREEN =0x03E0
+TFT_DARKCYAN =0x03EF
+TFT_MAROON =0x7800
+TFT_PURPLE =0x780F
+TFT_OLIVE =0x7BE0
+TFT_LIGHTGREY =0xD69A
+TFT_DARKGREY =0x7BEF
+TFT_BLUE =0x001F
+TFT_GREEN =0x07E0
+TFT_CYAN =0x07FF
+TFT_RED =0xF800
+TFT_MAGENTA =0xF81F
+TFT_YELLOW =0xFFE0
+TFT_WHITE =0xFFFF
+TFT_ORANGE =0xFDA0
+TFT_GREENYELLOW =0xB7E0
+TFT_PINK =0xFE19
+TFT_BROWN =0x9A60
+TFT_GOLD =0xFEA0
+TFT_SILVER =0xC618
+TFT_SKYBLUE =0x867D
+TFT_VIOLET =0x915C
+
+
+class Size:
+ def __init__(self, w, h):
+ self.w = w
+ self.h = h
+
+
+# Font 1 6x8
+# Font 2 12x16
+CHAR_SIZE = {
+ 1: Size(6, 8),
+ 2: Size(12, 16),
+}
+
+SCREEN_SIZE = Size(128, 128)
+
+# Calculates distance for short range spell.
+def short_range() -> int:
+ return 25 + 5 * CASTER_LEVEL
+
+# Entries in markdown language.
+# Parameter 0 of the tuple is the roll name
+# Parameter 1 of the tuple is the roll info.
+# The text will be shown when the roll type is selected. An error will be raised
+# if the text would unexpectedly goes past the end of the screen. There are a
+# few styling parameters that need to be on their own lines:
+# $COLOR - The color for the text
+# $SIZE - Sets the text size (see CHAR_SIZE)
+# $WRAP - By default text won't wrap and generate an error. This enables text wrapping. Lines will wrap mid-word.
+ENTRIES = [
+ tuple(["Barb Chain", f'''\
+$COLOR({TFT_RED})
+Barb Chain
+$COLOR({TFT_WHITE})
+Atk/CMD {BASE_ATK_BONUS + SPELL_ABILITY_MOD}
+Range: {short_range()}
+$WRAP(1)
+$SIZE(1)
+Summon {1 + math.floor((CASTER_LEVEL-1)/3)} chains. Make a melee atk 1d6 or a trip CMD=AT. On a hit make Will save or shaken 1d4 rnds.
+''']),
+ tuple(["Saves", f'''\
+$COLOR({TFT_GREEN})
+Saves
+$COLOR({TFT_WHITE})
+FORT 8
+REFLEX 8
+WILL 9
+''']),
+ tuple(["Skill", f'''\
+Skill
+''']),
+ tuple(["Attack", f'''\
+Attack
+Melee +{BASE_ATK_BONUS + SIZE_BONUS + STR_BONUS}
+Range +{BASE_ATK_BONUS + SIZE_BONUS + DEX_BONUS}
+''']),
+ tuple(["Cure", f'''\
+Cure
+Lit 1d8+{min(5, CASTER_LEVEL)}
+Mod 2d8+{min(10, CASTER_LEVEL)}
+Ser 3d8+{min(15, CASTER_LEVEL)}
+''']),
+ tuple(["Concentrate", f'''\
+Concentrat
++{CASTER_LEVEL + SPELL_ABILITY_MOD}
+$SIZE(1)
+Defensive 15+2*SP_LV
+Dmg 10+DMG+SP_LV
+Grapple 10+CMB+SP_LV
+''']),
+]
+
+RE_SIZE = re.compile(r'\$SIZE\(([0-9])\)')
+RE_COLOR = re.compile(r'\$COLOR\(([0-9]+)\)')
+RE_WRAP = re.compile(r'\$WRAP\(([0-9])\)')
+
+END_HEADER_TXT = '// GENERATED\n'
+
+def main():
+ roll_info_file = Path(__file__).parent / 'roll_info.h'
+ old_contents = open(roll_info_file, 'r').read()
+
+ end_header = old_contents.index(END_HEADER_TXT)
+
+ with open(roll_info_file, 'w') as fd:
+ fd.write(old_contents[:end_header+len(END_HEADER_TXT)])
+
+ for key, entry in enumerate(ENTRIES):
+ size = 2
+ wrap = False
+ y_loc = 0
+ results = []
+ for line in entry[1].splitlines():
+ if line.startswith('$'):
+ m_size = RE_SIZE.match(line)
+ m_color = RE_COLOR.match(line)
+ m_wrap = RE_WRAP.match(line)
+ if m_size:
+ size = int(m_size.group(1))
+ results.append(f'tft.setTextSize({size});')
+ elif m_color:
+ results.append(
+ f'tft.setTextColor({int(m_color.group(1))});')
+ elif m_wrap:
+ wrap = bool(int(m_wrap.group(1)))
+ else:
+ print(f'Entry {key} unknown modifier "{line}".')
+ exit(1)
+ else:
+ max_chars_per_line = math.floor(
+ SCREEN_SIZE.w / CHAR_SIZE[size].w)
+ if len(line) > max_chars_per_line:
+ if wrap:
+ while len(line) > max_chars_per_line:
+ results.append(
+ f'tft.println("{line[:max_chars_per_line]}");')
+ line = line[max_chars_per_line:].lstrip()
+ y_loc += CHAR_SIZE[size].h
+ else:
+ print(f'Entry {key} line "{line}" too long.')
+ exit(1)
+
+ if len(line) > 0:
+ y_loc += CHAR_SIZE[size].h
+ results.append(f'tft.println("{line}");')
+
+ if y_loc > SCREEN_SIZE.h:
+ print(
+ f'Entry {key} line "{line}" went past bottom of screen.')
+ exit(1)
+
+ result = indent('\n'.join(results), ' ')
+
+ fd.write(f'''\
+static void PrintRoll{key}() {{
+{result}
+}}
+
+''')
+
+ results = []
+ for key, entry in enumerate(ENTRIES):
+ results.append(f'''\
+case {key}:
+ return "{entry[0]}";''')
+
+ cases = indent('\n'.join(results), ' ')
+
+ fd.write(f'''\
+static const char* GetRollName(uint8_t key) {{
+ switch (key) {{
+{cases}
+ }}
+ return "";
+}}
+
+''')
+
+ results = []
+ for key, entry in enumerate(ENTRIES):
+ results.append(f'''\
+case {key}:
+ PrintRoll{key}();
+ return;''')
+
+ cases = indent('\n'.join(results), ' ')
+
+ fd.write(f'''\
+static void PrintRollInfo(uint8_t key) {{
+ tft.setTextColor(TFT_WHITE);
+ tft.setCursor(0, 0);
+ tft.setTextSize(2);
+ switch (key) {{
+{cases}
+ }}
+ tft.setTextColor(TFT_RED);
+ tft.setCursor(0, 60);
+ tft.println("Unknown");
+}}
+
+''')
+
+ fd.write(f'static constexpr size_t NUM_ROLL_INFOS = {len(ENTRIES)};\n')
+
+
+main()
diff --git a/usermods/pixels_dice_tray/images/effect.webp b/usermods/pixels_dice_tray/images/effect.webp
new file mode 100644
index 000000000..989ed1eb9
Binary files /dev/null and b/usermods/pixels_dice_tray/images/effect.webp differ
diff --git a/usermods/pixels_dice_tray/images/info.webp b/usermods/pixels_dice_tray/images/info.webp
new file mode 100644
index 000000000..5cb84efb3
Binary files /dev/null and b/usermods/pixels_dice_tray/images/info.webp differ
diff --git a/usermods/pixels_dice_tray/images/roll_plot.png b/usermods/pixels_dice_tray/images/roll_plot.png
new file mode 100644
index 000000000..47f568863
Binary files /dev/null and b/usermods/pixels_dice_tray/images/roll_plot.png differ
diff --git a/usermods/pixels_dice_tray/images/status.webp b/usermods/pixels_dice_tray/images/status.webp
new file mode 100644
index 000000000..878e9a558
Binary files /dev/null and b/usermods/pixels_dice_tray/images/status.webp differ
diff --git a/usermods/pixels_dice_tray/led_effects.h b/usermods/pixels_dice_tray/led_effects.h
new file mode 100644
index 000000000..7553d6817
--- /dev/null
+++ b/usermods/pixels_dice_tray/led_effects.h
@@ -0,0 +1,124 @@
+/**
+ * The LED effects influenced by dice rolls.
+ */
+#pragma once
+
+#include "wled.h"
+
+#include "dice_state.h"
+
+// Reuse FX display functions.
+extern uint16_t mode_breath();
+extern uint16_t mode_blends();
+extern uint16_t mode_glitter();
+extern uint16_t mode_gravcenter();
+
+static constexpr uint8_t USER_ANY_DIE = 0xFF;
+/**
+ * Two custom effect parameters are used.
+ * c1 - Source Die. Sets which die from [0 - MAX_NUM_DICE) controls this effect.
+ * If this is set to 0xFF, use the latest event regardless of which die it
+ * came from.
+ * c2 - Target Roll. Sets the "success" criteria for a roll to >= this value.
+ */
+
+/**
+ * Return the last die roll based on the custom1 effect setting.
+ */
+static pixels::RollEvent GetLastRollForSegment() {
+ // If an invalid die is selected, fallback to using the most recent roll from
+ // any die.
+ if (SEGMENT.custom1 >= MAX_NUM_DICE) {
+ return GetLastRoll();
+ } else {
+ return last_die_events[SEGMENT.custom1];
+ }
+}
+
+
+/*
+ * Alternating pixels running function (copied static function).
+ */
+// paletteBlend: 0 - wrap when moving, 1 - always wrap, 2 - never wrap, 3 - none (undefined)
+#define PALETTE_SOLID_WRAP (strip.paletteBlend == 1 || strip.paletteBlend == 3)
+static uint16_t running_copy(uint32_t color1, uint32_t color2, bool theatre = false) {
+ int width = (theatre ? 3 : 1) + (SEGMENT.intensity >> 4); // window
+ uint32_t cycleTime = 50 + (255 - SEGMENT.speed);
+ uint32_t it = strip.now / cycleTime;
+ bool usePalette = color1 == SEGCOLOR(0);
+
+ for (int i = 0; i < SEGLEN; i++) {
+ uint32_t col = color2;
+ if (usePalette) color1 = SEGMENT.color_from_palette(i, true, PALETTE_SOLID_WRAP, 0);
+ if (theatre) {
+ if ((i % width) == SEGENV.aux0) col = color1;
+ } else {
+ int pos = (i % (width<<1));
+ if ((pos < SEGENV.aux0-width) || ((pos >= SEGENV.aux0) && (pos < SEGENV.aux0+width))) col = color1;
+ }
+ SEGMENT.setPixelColor(i,col);
+ }
+
+ if (it != SEGENV.step) {
+ SEGENV.aux0 = (SEGENV.aux0 +1) % (theatre ? width : (width<<1));
+ SEGENV.step = it;
+ }
+ return FRAMETIME;
+}
+
+static uint16_t simple_roll() {
+ auto roll = GetLastRollForSegment();
+ if (roll.state != pixels::RollState::ON_FACE) {
+ SEGMENT.fill(0);
+ } else {
+ uint16_t num_segments = float(roll.current_face + 1) / 20.0 * SEGLEN;
+ for (int i = 0; i <= num_segments; i++) {
+ SEGMENT.setPixelColor(i, SEGCOLOR(0));
+ }
+ for (int i = num_segments; i < SEGLEN; i++) {
+ SEGMENT.setPixelColor(i, SEGCOLOR(1));
+ }
+ }
+ return FRAMETIME;
+}
+// See https://kno.wled.ge/interfaces/json-api/#effect-metadata
+// Name - DieSimple
+// Parameters -
+// * Selected Die (custom1)
+// Colors - Uses color1 and color2
+// Palette - Not used
+// Flags - Effect is optimized for use on 1D LED strips.
+// Defaults - Selected Die set to 0xFF (USER_ANY_DIE)
+static const char _data_FX_MODE_SIMPLE_DIE[] PROGMEM =
+ "DieSimple@,,Selected Die;!,!;;1;c1=255";
+
+static uint16_t pulse_roll() {
+ auto roll = GetLastRollForSegment();
+ if (roll.state != pixels::RollState::ON_FACE) {
+ return mode_breath();
+ } else {
+ uint16_t ret = mode_blends();
+ uint16_t num_segments = float(roll.current_face + 1) / 20.0 * SEGLEN;
+ for (int i = num_segments; i < SEGLEN; i++) {
+ SEGMENT.setPixelColor(i, SEGCOLOR(1));
+ }
+ return ret;
+ }
+}
+static const char _data_FX_MODE_PULSE_DIE[] PROGMEM =
+ "DiePulse@!,!,Selected Die;!,!;!;1;sx=24,pal=50,c1=255";
+
+static uint16_t check_roll() {
+ auto roll = GetLastRollForSegment();
+ if (roll.state != pixels::RollState::ON_FACE) {
+ return running_copy(SEGCOLOR(0), SEGCOLOR(2));
+ } else {
+ if (roll.current_face + 1 >= SEGMENT.custom2) {
+ return mode_glitter();
+ } else {
+ return mode_gravcenter();
+ }
+ }
+}
+static const char _data_FX_MODE_CHECK_DIE[] PROGMEM =
+ "DieCheck@!,!,Selected Die,Target Roll;1,2,3;!;1;pal=0,ix=128,m12=2,si=0,c1=255,c2=10";
diff --git a/usermods/pixels_dice_tray/mqtt_client/mqtt_logger.py b/usermods/pixels_dice_tray/mqtt_client/mqtt_logger.py
new file mode 100644
index 000000000..a3e4aa014
--- /dev/null
+++ b/usermods/pixels_dice_tray/mqtt_client/mqtt_logger.py
@@ -0,0 +1,104 @@
+#!/usr/bin/env python
+import argparse
+import json
+import os
+from pathlib import Path
+import time
+
+# Dependency installed with `pip install paho-mqtt`.
+# https://pypi.org/project/paho-mqtt/
+import paho.mqtt.client as mqtt
+
+state = {"label": "None"}
+
+
+# Define MQTT callbacks
+def on_connect(client, userdata, connect_flags, reason_code, properties):
+ print("Connected with result code " + str(reason_code))
+ state["start_time"] = None
+ client.subscribe(f"{state['root_topic']}#")
+
+
+def on_message(client, userdata, msg):
+ if msg.topic.endswith("roll_label"):
+ state["label"] = msg.payload.decode("ascii")
+ print(f"Label set to {state['label']}")
+ elif msg.topic.endswith("roll"):
+ json_str = msg.payload.decode("ascii")
+ msg_data = json.loads(json_str)
+ # Convert the relative timestamps reported to the dice to an approximate absolute time.
+ # The "last_time" check is to detect if the ESP32 was restarted or the counter rolled over.
+ if state["start_time"] is None or msg_data["time"] < state["last_time"]:
+ state["start_time"] = time.time() - (msg_data["time"] / 1000.0)
+ state["last_time"] = msg_data["time"]
+ timestamp = state["start_time"] + (msg_data["time"] / 1000.0)
+ state["csv_fd"].write(
+ f"{timestamp:.3f}, {msg_data['name']}, {state['label']}, {msg_data['state']}, {msg_data['val']}\n"
+ )
+ state["csv_fd"].flush()
+ if msg_data["state"] == 1:
+ print(
+ f"{timestamp:.3f}: {msg_data['name']} rolled {msg_data['val']}")
+
+
+def main():
+ parser = argparse.ArgumentParser(
+ description="Log die rolls from WLED MQTT events to CSV.")
+
+ # IP address (with a default value)
+ parser.add_argument(
+ "--host",
+ type=str,
+ default="127.0.0.1",
+ help="Host address of broker (default: 127.0.0.1)",
+ )
+ parser.add_argument(
+ "--port", type=int, default=1883, help="Broker TCP port (default: 1883)"
+ )
+ parser.add_argument("--user", type=str, help="Optional MQTT username")
+ parser.add_argument("--password", type=str, help="Optional MQTT password")
+ parser.add_argument(
+ "--topic",
+ type=str,
+ help="Optional MQTT topic to listen to. For example if topic is 'wled/e5a658/dice/', subscript to to 'wled/e5a658/dice/#'. By default, listen to all topics looking for ones that end in 'roll_label' and 'roll'.",
+ )
+ parser.add_argument(
+ "-o",
+ "--output-dir",
+ type=Path,
+ default=Path(__file__).absolute().parent / "logs",
+ help="Directory to log to",
+ )
+ args = parser.parse_args()
+
+ timestr = time.strftime("%Y-%m-%d")
+ os.makedirs(args.output_dir, exist_ok=True)
+ state["csv_fd"] = open(args.output_dir / f"roll_log_{timestr}.csv", "a")
+
+ # Create `an MQTT client
+ client = mqtt.Client(mqtt.CallbackAPIVersion.VERSION2)
+
+ # Set MQTT callbacks
+ client.on_connect = on_connect
+ client.on_message = on_message
+
+ if args.user and args.password:
+ client.username_pw_set(args.user, args.password)
+
+ state["root_topic"] = ""
+
+ # Connect to the MQTT broker
+ client.connect(args.host, args.port, 60)
+
+ try:
+ while client.loop(timeout=1.0) == mqtt.MQTT_ERR_SUCCESS:
+ time.sleep(0.1)
+ except KeyboardInterrupt:
+ exit(0)
+
+ print("Connection Failure")
+ exit(1)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/usermods/pixels_dice_tray/mqtt_client/mqtt_plotter.py b/usermods/pixels_dice_tray/mqtt_client/mqtt_plotter.py
new file mode 100644
index 000000000..3ce0b7bf1
--- /dev/null
+++ b/usermods/pixels_dice_tray/mqtt_client/mqtt_plotter.py
@@ -0,0 +1,69 @@
+import argparse
+from http import server
+import os
+from pathlib import Path
+import socketserver
+
+import pandas as pd
+import plotly.express as px
+
+# python -m http.server 8000 --directory /tmp/
+
+
+def main():
+ parser = argparse.ArgumentParser(
+ description="Generate an html plot of rolls captured by mqtt_logger.py")
+ parser.add_argument("input_file", type=Path, help="Log file to plot")
+ parser.add_argument(
+ "-s",
+ "--start-server",
+ action="store_true",
+ help="After generating the plot, run a webserver pointing to it",
+ )
+ parser.add_argument(
+ "-o",
+ "--output-dir",
+ type=Path,
+ default=Path(__file__).absolute().parent / "logs",
+ help="Directory to log to",
+ )
+ args = parser.parse_args()
+
+ df = pd.read_csv(
+ args.input_file, names=["timestamp", "die", "label", "state", "roll"]
+ )
+
+ df_filt = df[df["state"] == 1]
+
+ time = (df_filt["timestamp"] - df_filt["timestamp"].min()) / 60 / 60
+
+ fig = px.bar(
+ df_filt,
+ x=time,
+ y="roll",
+ color="label",
+ labels={
+ "x": "Game Time (min)",
+ },
+ title=f"Roll Report: {args.input_file.name}",
+ )
+
+ output_path = args.output_dir / (args.input_file.stem + ".html")
+
+ fig.write_html(output_path)
+ if args.start_server:
+ PORT = 8000
+ os.chdir(args.output_dir)
+ try:
+ with socketserver.TCPServer(
+ ("", PORT), server.SimpleHTTPRequestHandler
+ ) as httpd:
+ print(
+ f"Serving HTTP on http://0.0.0.0:{PORT}/{output_path.name}")
+ httpd.serve_forever()
+ except KeyboardInterrupt:
+ pass
+
+
+if __name__ == "__main__":
+ main()
diff --git a/usermods/pixels_dice_tray/mqtt_client/requirements.txt b/usermods/pixels_dice_tray/mqtt_client/requirements.txt
new file mode 100644
index 000000000..8fb305c7e
--- /dev/null
+++ b/usermods/pixels_dice_tray/mqtt_client/requirements.txt
@@ -0,0 +1,2 @@
+plotly-express
+paho-mqtt
\ No newline at end of file
diff --git a/usermods/pixels_dice_tray/pixels_dice_tray.h b/usermods/pixels_dice_tray/pixels_dice_tray.h
new file mode 100644
index 000000000..a1e45ba33
--- /dev/null
+++ b/usermods/pixels_dice_tray/pixels_dice_tray.h
@@ -0,0 +1,535 @@
+#pragma once
+
+#include // https://github.com/axlan/arduino-pixels-dice
+#include "wled.h"
+
+#include "dice_state.h"
+#include "led_effects.h"
+#include "tft_menu.h"
+
+// Set this parameter to rotate the display. 1-3 rotate by 90,180,270 degrees.
+#ifndef USERMOD_PIXELS_DICE_TRAY_ROTATION
+ #define USERMOD_PIXELS_DICE_TRAY_ROTATION 0
+#endif
+
+// How often we are redrawing screen
+#ifndef USERMOD_PIXELS_DICE_TRAY_REFRESH_RATE_MS
+ #define USERMOD_PIXELS_DICE_TRAY_REFRESH_RATE_MS 200
+#endif
+
+// Time with no updates before screen turns off (-1 to disable)
+#ifndef USERMOD_PIXELS_DICE_TRAY_TIMEOUT_MS
+ #define USERMOD_PIXELS_DICE_TRAY_TIMEOUT_MS 5 * 60 * 1000
+#endif
+
+// Duration of each search for BLE devices.
+#ifndef BLE_SCAN_DURATION_SEC
+ #define BLE_SCAN_DURATION_SEC 4
+#endif
+
+// Time between searches for BLE devices.
+#ifndef BLE_TIME_BETWEEN_SCANS_SEC
+ #define BLE_TIME_BETWEEN_SCANS_SEC 5
+#endif
+
+#define WLED_DEBOUNCE_THRESHOLD \
+ 50 // only consider button input of at least 50ms as valid (debouncing)
+#define WLED_LONG_PRESS \
+ 600 // long press if button is released after held for at least 600ms
+#define WLED_DOUBLE_PRESS \
+ 350 // double press if another press within 350ms after a short press
+
+class PixelsDiceTrayUsermod : public Usermod {
+ private:
+ bool enabled = true;
+
+ DiceUpdate dice_update;
+
+ // Settings
+ uint32_t ble_scan_duration_sec = BLE_SCAN_DURATION_SEC;
+ unsigned rotation = USERMOD_PIXELS_DICE_TRAY_ROTATION;
+ DiceSettings dice_settings;
+
+#if USING_TFT_DISPLAY
+ MenuController menu_ctrl;
+#endif
+
+ static void center(String& line, uint8_t width) {
+ int len = line.length();
+ if (len < width)
+ for (byte i = (width - len) / 2; i > 0; i--)
+ line = ' ' + line;
+ for (byte i = line.length(); i < width; i++)
+ line += ' ';
+ }
+
+ // NOTE: THIS MOD DOES NOT SUPPORT CHANGING THE SPI PINS FROM THE UI! The
+ // TFT_eSPI library requires that they are compiled in.
+ static void SetSPIPinsFromMacros() {
+#if USING_TFT_DISPLAY
+ spi_mosi = TFT_MOSI;
+ // Done in TFT library.
+ if (TFT_MISO == TFT_MOSI) {
+ spi_miso = -1;
+ }
+ spi_sclk = TFT_SCLK;
+#endif
+ }
+
+ void UpdateDieNames(
+ const std::array& new_die_names) {
+ for (size_t i = 0; i < MAX_NUM_DICE; i++) {
+ // If the saved setting was a wildcard, and that connected to a die, use
+ // the new name instead of the wildcard. Saving this "locks" the name in.
+ bool overriden_wildcard =
+ new_die_names[i] == "*" && dice_update.connected_die_ids[i] != 0;
+ if (!overriden_wildcard &&
+ new_die_names[i] != dice_settings.configured_die_names[i]) {
+ dice_settings.configured_die_names[i] = new_die_names[i];
+ dice_update.connected_die_ids[i] = 0;
+ last_die_events[i] = pixels::RollEvent();
+ }
+ }
+ }
+
+ public:
+ PixelsDiceTrayUsermod()
+#if USING_TFT_DISPLAY
+ : menu_ctrl(&dice_settings)
+#endif
+ {
+ }
+
+ // Functions called by WLED
+
+ /*
+ * setup() is called once at boot. WiFi is not yet connected at this point.
+ * You can use it to initialize variables, sensors or similar.
+ */
+ void setup() override {
+ DEBUG_PRINTLN(F("DiceTray: init"));
+#if USING_TFT_DISPLAY
+ SetSPIPinsFromMacros();
+ PinManagerPinType spiPins[] = {
+ {spi_mosi, true}, {spi_miso, false}, {spi_sclk, true}};
+ if (!PinManager::allocateMultiplePins(spiPins, 3, PinOwner::HW_SPI)) {
+ enabled = false;
+ } else {
+ PinManagerPinType displayPins[] = {
+ {TFT_CS, true}, {TFT_DC, true}, {TFT_RST, true}, {TFT_BL, true}};
+ if (!PinManager::allocateMultiplePins(
+ displayPins, sizeof(displayPins) / sizeof(PinManagerPinType),
+ PinOwner::UM_FourLineDisplay)) {
+ PinManager::deallocateMultiplePins(spiPins, 3, PinOwner::HW_SPI);
+ enabled = false;
+ }
+ }
+
+ if (!enabled) {
+ DEBUG_PRINTLN(F("DiceTray: TFT Display pin allocations failed."));
+ return;
+ }
+#endif
+
+ // Need to enable WiFi sleep:
+ // "E (1513) wifi:Error! Should enable WiFi modem sleep when both WiFi and Bluetooth are enabled!!!!!!"
+ noWifiSleep = false;
+
+ // Get the mode indexes that the effects are registered to.
+ FX_MODE_SIMPLE_D20 = strip.addEffect(255, &simple_roll, _data_FX_MODE_SIMPLE_DIE);
+ FX_MODE_PULSE_D20 = strip.addEffect(255, &pulse_roll, _data_FX_MODE_PULSE_DIE);
+ FX_MODE_CHECK_D20 = strip.addEffect(255, &check_roll, _data_FX_MODE_CHECK_DIE);
+ DIE_LED_MODES = {FX_MODE_SIMPLE_D20, FX_MODE_PULSE_D20, FX_MODE_CHECK_D20};
+
+ // Start a background task scanning for dice.
+ // On completion the discovered dice are connected to.
+ pixels::ScanForDice(ble_scan_duration_sec, BLE_TIME_BETWEEN_SCANS_SEC);
+
+#if USING_TFT_DISPLAY
+ menu_ctrl.Init(rotation);
+#endif
+ }
+
+ /*
+ * connected() is called every time the WiFi is (re)connected
+ * Use it to initialize network interfaces
+ */
+ void connected() override {
+ // Serial.println("Connected to WiFi!");
+ }
+
+ /*
+ * loop() is called continuously. Here you can check for events, read sensors,
+ * etc.
+ *
+ * Tips:
+ * 1. You can use "if (WLED_CONNECTED)" to check for a successful network
+ * connection. Additionally, "if (WLED_MQTT_CONNECTED)" is available to check
+ * for a connection to an MQTT broker.
+ *
+ * 2. Try to avoid using the delay() function. NEVER use delays longer than 10
+ * milliseconds. Instead, use a timer check as shown here.
+ */
+ void loop() override {
+ static long last_loop_time = 0;
+ static long last_die_connected_time = millis();
+
+ char mqtt_topic_buffer[MQTT_MAX_TOPIC_LEN + 16];
+ char mqtt_data_buffer[128];
+
+ // Check if we time interval for redrawing passes.
+ if (millis() - last_loop_time < USERMOD_PIXELS_DICE_TRAY_REFRESH_RATE_MS) {
+ return;
+ }
+ last_loop_time = millis();
+
+ // Update dice_list with the connected dice
+ pixels::ListDice(dice_update.dice_list);
+ // Get all the roll/battery updates since the last loop
+ pixels::GetDieRollUpdates(dice_update.roll_updates);
+ pixels::GetDieBatteryUpdates(dice_update.battery_updates);
+
+ // Go through list of connected die.
+ // TODO: Blacklist die that are connected to, but don't match the configured
+ // names.
+ std::array die_connected = {false, false};
+ for (auto die_id : dice_update.dice_list) {
+ bool matched = false;
+ // First check if we've already matched this ID to a connected die.
+ for (size_t i = 0; i < MAX_NUM_DICE; i++) {
+ if (die_id == dice_update.connected_die_ids[i]) {
+ die_connected[i] = true;
+ matched = true;
+ break;
+ }
+ }
+
+ // If this isn't already matched, check if its name matches an expected name.
+ if (!matched) {
+ auto die_name = pixels::GetDieDescription(die_id).name;
+ for (size_t i = 0; i < MAX_NUM_DICE; i++) {
+ if (0 == dice_update.connected_die_ids[i] &&
+ die_name == dice_settings.configured_die_names[i]) {
+ dice_update.connected_die_ids[i] = die_id;
+ die_connected[i] = true;
+ matched = true;
+ DEBUG_PRINTF_P(PSTR("DiceTray: %u (%s) connected.\n"), i,
+ die_name.c_str());
+ break;
+ }
+ }
+
+ // If it doesn't match any expected names, check if there's any wildcards to match.
+ if (!matched) {
+ auto description = pixels::GetDieDescription(die_id);
+ for (size_t i = 0; i < MAX_NUM_DICE; i++) {
+ if (dice_settings.configured_die_names[i] == "*") {
+ dice_update.connected_die_ids[i] = die_id;
+ die_connected[i] = true;
+ dice_settings.configured_die_names[i] = die_name;
+ DEBUG_PRINTF_P(PSTR("DiceTray: %u (%s) connected as wildcard.\n"),
+ i, die_name.c_str());
+ break;
+ }
+ }
+ }
+ }
+ }
+
+ // Clear connected die that aren't still present.
+ bool all_found = true;
+ bool none_found = true;
+ for (size_t i = 0; i < MAX_NUM_DICE; i++) {
+ if (!die_connected[i]) {
+ if (dice_update.connected_die_ids[i] != 0) {
+ dice_update.connected_die_ids[i] = 0;
+ last_die_events[i] = pixels::RollEvent();
+ DEBUG_PRINTF_P(PSTR("DiceTray: %u disconnected.\n"), i);
+ }
+
+ if (!dice_settings.configured_die_names[i].empty()) {
+ all_found = false;
+ }
+ } else {
+ none_found = false;
+ }
+ }
+
+ // Update last_die_events
+ for (const auto& roll : dice_update.roll_updates) {
+ for (size_t i = 0; i < MAX_NUM_DICE; i++) {
+ if (dice_update.connected_die_ids[i] == roll.first) {
+ last_die_events[i] = roll.second;
+ }
+ }
+ if (WLED_MQTT_CONNECTED) {
+ snprintf(mqtt_topic_buffer, sizeof(mqtt_topic_buffer), PSTR("%s/%s"),
+ mqttDeviceTopic, "dice/roll");
+ const char* name = pixels::GetDieDescription(roll.first).name.c_str();
+ snprintf(mqtt_data_buffer, sizeof(mqtt_data_buffer),
+ "{\"name\":\"%s\",\"state\":%d,\"val\":%d,\"time\":%d}", name,
+ int(roll.second.state), roll.second.current_face + 1,
+ roll.second.timestamp);
+ mqtt->publish(mqtt_topic_buffer, 0, false, mqtt_data_buffer);
+ }
+ }
+
+#if USERMOD_PIXELS_DICE_TRAY_TIMEOUT_MS > 0 && USING_TFT_DISPLAY
+ // If at least one die is configured, but none are found
+ if (none_found) {
+ if (millis() - last_die_connected_time >
+ USERMOD_PIXELS_DICE_TRAY_TIMEOUT_MS) {
+ // Turn off LEDs and backlight and go to sleep.
+ // Since none of the wake up pins are wired up, expect to sleep
+ // until power cycle or reset, so don't need to handle normal
+ // wakeup.
+ bri = 0;
+ applyFinalBri();
+ menu_ctrl.EnableBacklight(false);
+ gpio_hold_en((gpio_num_t)TFT_BL);
+ gpio_deep_sleep_hold_en();
+ esp_deep_sleep_start();
+ }
+ } else {
+ last_die_connected_time = millis();
+ }
+#endif
+
+ if (pixels::IsScanning() && all_found) {
+ DEBUG_PRINTF_P(PSTR("DiceTray: All dice found. Stopping search.\n"));
+ pixels::StopScanning();
+ } else if (!pixels::IsScanning() && !all_found) {
+ DEBUG_PRINTF_P(PSTR("DiceTray: Resuming dice search.\n"));
+ pixels::ScanForDice(ble_scan_duration_sec, BLE_TIME_BETWEEN_SCANS_SEC);
+ }
+#if USING_TFT_DISPLAY
+ menu_ctrl.Update(dice_update);
+#endif
+ }
+
+ /*
+ * addToJsonInfo() can be used to add custom entries to the /json/info part of
+ * the JSON API. Creating an "u" object allows you to add custom key/value
+ * pairs to the Info section of the WLED web UI. Below it is shown how this
+ * could be used for e.g. a light sensor
+ */
+ void addToJsonInfo(JsonObject& root) override {
+ JsonObject user = root["u"];
+ if (user.isNull())
+ user = root.createNestedObject("u");
+
+ JsonArray lightArr = user.createNestedArray("DiceTray"); // name
+ lightArr.add(enabled ? F("installed") : F("disabled")); // unit
+ }
+
+ /*
+ * addToJsonState() can be used to add custom entries to the /json/state part
+ * of the JSON API (state object). Values in the state object may be modified
+ * by connected clients
+ */
+ void addToJsonState(JsonObject& root) override {
+ // root["user0"] = userVar0;
+ }
+
+ /*
+ * readFromJsonState() can be used to receive data clients send to the
+ * /json/state part of the JSON API (state object). Values in the state object
+ * may be modified by connected clients
+ */
+ void readFromJsonState(JsonObject& root) override {
+ // userVar0 = root["user0"] | userVar0; //if "user0" key exists in JSON,
+ // update, else keep old value if (root["bri"] == 255)
+ // Serial.println(F("Don't burn down your garage!"));
+ }
+
+ /*
+ * addToConfig() can be used to add custom persistent settings to the cfg.json
+ * file in the "um" (usermod) object. It will be called by WLED when settings
+ * are actually saved (for example, LED settings are saved) If you want to
+ * force saving the current state, use serializeConfig() in your loop().
+ *
+ * CAUTION: serializeConfig() will initiate a filesystem write operation.
+ * It might cause the LEDs to stutter and will cause flash wear if called too
+ * often. Use it sparingly and always in the loop, never in network callbacks!
+ *
+ * addToConfig() will also not yet add your setting to one of the settings
+ * pages automatically. To make that work you still have to add the setting to
+ * the HTML, xml.cpp and set.cpp manually.
+ *
+ * I highly recommend checking out the basics of ArduinoJson serialization and
+ * deserialization in order to use custom settings!
+ */
+ void addToConfig(JsonObject& root) override {
+ JsonObject top = root.createNestedObject("DiceTray");
+ top["ble_scan_duration"] = ble_scan_duration_sec;
+ top["die_0"] = dice_settings.configured_die_names[0];
+ top["die_1"] = dice_settings.configured_die_names[1];
+#if USING_TFT_DISPLAY
+ top["rotation"] = rotation;
+ JsonArray pins = top.createNestedArray("pin");
+ pins.add(TFT_CS);
+ pins.add(TFT_DC);
+ pins.add(TFT_RST);
+ pins.add(TFT_BL);
+#endif
+ }
+
+ void appendConfigData() override {
+ // Slightly annoying that you can't put text before an element.
+ // The an item on the usermod config page has the following HTML:
+ // ```html
+ // Die 0
+ //
+ //
+ // ```
+ // addInfo let's you add data before or after the two input fields.
+ //
+ // To work around this, add info text to the end of the preceding item.
+ //
+ // See addInfo in wled00/data/settings_um.htm for details on what this function does.
+ oappend(SET_F(
+ "addInfo('DiceTray:ble_scan_duration',1,'
Set to \"*\" to "
+ "connect to any die. Leave Blank to disable. Saving will replace \"*\" with die names.','');"));
+#if USING_TFT_DISPLAY
+ oappend(SET_F("ddr=addDropdown('DiceTray','rotation');"));
+ oappend(SET_F("addOption(ddr,'0 deg',0);"));
+ oappend(SET_F("addOption(ddr,'90 deg',1);"));
+ oappend(SET_F("addOption(ddr,'180 deg',2);"));
+ oappend(SET_F("addOption(ddr,'270 deg',3);"));
+ oappend(SET_F(
+ "addInfo('DiceTray:rotation',1,' DO NOT CHANGE "
+ "SPI PINS. CHANGES ARE IGNORED.','');"));
+ oappend(SET_F("addInfo('TFT:pin[]',0,'','SPI CS');"));
+ oappend(SET_F("addInfo('TFT:pin[]',1,'','SPI DC');"));
+ oappend(SET_F("addInfo('TFT:pin[]',2,'','SPI RST');"));
+ oappend(SET_F("addInfo('TFT:pin[]',3,'','SPI BL');"));
+#endif
+ }
+
+ /*
+ * readFromConfig() can be used to read back the custom settings you added
+ * with addToConfig(). This is called by WLED when settings are loaded
+ * (currently this only happens once immediately after boot)
+ *
+ * readFromConfig() is called BEFORE setup(). This means you can use your
+ * persistent values in setup() (e.g. pin assignments, buffer sizes), but also
+ * that if you want to write persistent values to a dynamic buffer, you'd need
+ * to allocate it here instead of in setup. If you don't know what that is,
+ * don't fret. It most likely doesn't affect your use case :)
+ */
+ bool readFromConfig(JsonObject& root) override {
+ // we look for JSON object:
+ // {"DiceTray":{"rotation":0,"font_size":1}}
+ JsonObject top = root["DiceTray"];
+ if (top.isNull()) {
+ DEBUG_PRINTLN(F("DiceTray: No config found. (Using defaults.)"));
+ return false;
+ }
+
+ if (top.containsKey("die_0") && top.containsKey("die_1")) {
+ const std::array new_die_names{
+ top["die_0"], top["die_1"]};
+ UpdateDieNames(new_die_names);
+ } else {
+ DEBUG_PRINTLN(F("DiceTray: No die names found."));
+ }
+
+#if USING_TFT_DISPLAY
+ unsigned new_rotation = min(top["rotation"] | rotation, 3u);
+
+ // Restore the SPI pins to their compiled in defaults.
+ SetSPIPinsFromMacros();
+
+ if (new_rotation != rotation) {
+ rotation = new_rotation;
+ menu_ctrl.Init(rotation);
+ }
+
+ // Update with any modified settings.
+ menu_ctrl.Redraw();
+#endif
+
+ // use "return !top["newestParameter"].isNull();" when updating Usermod with
+ // new features
+ return !top["DiceTray"].isNull();
+ }
+
+ /**
+ * handleButton() can be used to override default button behaviour. Returning true
+ * will prevent button working in a default way.
+ * Replicating button.cpp
+ */
+#if USING_TFT_DISPLAY
+ bool handleButton(uint8_t b) override {
+ if (!enabled || b > 1 // buttons 0,1 only
+ || buttonType[b] == BTN_TYPE_SWITCH || buttonType[b] == BTN_TYPE_NONE ||
+ buttonType[b] == BTN_TYPE_RESERVED ||
+ buttonType[b] == BTN_TYPE_PIR_SENSOR ||
+ buttonType[b] == BTN_TYPE_ANALOG ||
+ buttonType[b] == BTN_TYPE_ANALOG_INVERTED) {
+ return false;
+ }
+
+ unsigned long now = millis();
+ static bool buttonPressedBefore[2] = {false};
+ static bool buttonLongPressed[2] = {false};
+ static unsigned long buttonPressedTime[2] = {0};
+ static unsigned long buttonWaitTime[2] = {0};
+
+ //momentary button logic
+ if (!buttonLongPressed[b] && isButtonPressed(b)) { //pressed
+ if (!buttonPressedBefore[b]) {
+ buttonPressedTime[b] = now;
+ }
+ buttonPressedBefore[b] = true;
+
+ if (now - buttonPressedTime[b] > WLED_LONG_PRESS) { //long press
+ menu_ctrl.HandleButton(ButtonType::LONG, b);
+ buttonLongPressed[b] = true;
+ return true;
+ }
+ } else if (!isButtonPressed(b) && buttonPressedBefore[b]) { //released
+
+ long dur = now - buttonPressedTime[b];
+ if (dur < WLED_DEBOUNCE_THRESHOLD) {
+ buttonPressedBefore[b] = false;
+ return true;
+ } //too short "press", debounce
+
+ bool doublePress = buttonWaitTime[b]; //did we have short press before?
+ buttonWaitTime[b] = 0;
+
+ if (!buttonLongPressed[b]) { //short press
+ // if this is second release within 350ms it is a double press (buttonWaitTime!=0)
+ if (doublePress) {
+ menu_ctrl.HandleButton(ButtonType::DOUBLE, b);
+ } else {
+ buttonWaitTime[b] = now;
+ }
+ }
+ buttonPressedBefore[b] = false;
+ buttonLongPressed[b] = false;
+ }
+ // if 350ms elapsed since last press/release it is a short press
+ if (buttonWaitTime[b] && now - buttonWaitTime[b] > WLED_DOUBLE_PRESS &&
+ !buttonPressedBefore[b]) {
+ buttonWaitTime[b] = 0;
+ menu_ctrl.HandleButton(ButtonType::SINGLE, b);
+ }
+
+ return true;
+ }
+#endif
+
+ /*
+ * getId() allows you to optionally give your V2 usermod an unique ID (please
+ * define it in const.h!). This could be used in the future for the system to
+ * determine whether your usermod is installed.
+ */
+ uint16_t getId() { return USERMOD_ID_PIXELS_DICE_TRAY; }
+
+ // More methods can be added in the future, this example will then be
+ // extended. Your usermod will remain compatible as it does not need to
+ // implement all methods from the Usermod base class!
+};
diff --git a/usermods/pixels_dice_tray/platformio_override.ini.sample b/usermods/pixels_dice_tray/platformio_override.ini.sample
new file mode 100644
index 000000000..b712f8b2e
--- /dev/null
+++ b/usermods/pixels_dice_tray/platformio_override.ini.sample
@@ -0,0 +1,115 @@
+[platformio]
+default_envs = t_qt_pro_8MB_dice, esp32s3dev_8MB_qspi_dice
+
+# ------------------------------------------------------------------------------
+# T-QT Pro 8MB with integrated 128x128 TFT screen
+# ------------------------------------------------------------------------------
+[env:t_qt_pro_8MB_dice]
+board = esp32-s3-devkitc-1 ;; generic dev board;
+platform = ${esp32s3.platform}
+upload_speed = 921600
+build_unflags = ${common.build_unflags}
+board_build.partitions = ${esp32.large_partitions}
+board_build.f_flash = 80000000L
+board_build.flash_mode = qio
+monitor_filters = esp32_exception_decoder
+build_flags = ${common.build_flags} ${esp32s3.build_flags} -D WLED_RELEASE_NAME=T-QT-PRO-8MB
+ -D CONFIG_LITTLEFS_FOR_IDF_3_2 -D WLED_WATCHDOG_TIMEOUT=0
+ -D ARDUINO_USB_CDC_ON_BOOT=1 -D ARDUINO_USB_MODE=1 ;; for boards with USB-OTG connector only (USBCDC or "TinyUSB")
+
+ -D USERMOD_PIXELS_DICE_TRAY ;; Enables this UserMod
+ -D USERMOD_PIXELS_DICE_TRAY_BL_ACTIVE_LOW=1
+ -D USERMOD_PIXELS_DICE_TRAY_ROTATION=2
+
+ ;-D WLED_DEBUG
+ ;;;;;;;;;;;;;;;;;; TFT_eSPI Settings ;;;;;;;;;;;;;;;;;;;;;;;;
+ ;-DCORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_DEBUG
+ -D USER_SETUP_LOADED=1
+
+ ; Define the TFT driver, pins etc. from: https://github.com/Bodmer/TFT_eSPI/blob/master/User_Setups/Setup211_LilyGo_T_QT_Pro_S3.h
+ ; GC9A01 128 x 128 display with no chip select line
+ -D USER_SETUP_ID=211
+ -D GC9A01_DRIVER=1
+ -D TFT_WIDTH=128
+ -D TFT_HEIGHT=128
+
+ -D TFT_BACKLIGHT_ON=0
+ -D TFT_ROTATION=3
+ -D CGRAM_OFFSET=1
+
+ -D TFT_MISO=-1
+ -D TFT_MOSI=2
+ -D TFT_SCLK=3
+ -D TFT_CS=5
+ -D TFT_DC=6
+ -D TFT_RST=1
+ -D TFT_BL=10
+ -D LOAD_GLCD=1
+ -D LOAD_FONT2=1
+ -D LOAD_FONT4=1
+ -D LOAD_FONT6=1
+ -D LOAD_FONT7=1
+ -D LOAD_FONT8=1
+ -D LOAD_GFXFF=1
+ ; Avoid SPIFFS dependancy that was causing compile issues.
+ ;-D SMOOTH_FONT=1
+ -D SPI_FREQUENCY=40000000
+ -D SPI_READ_FREQUENCY=20000000
+ -D SPI_TOUCH_FREQUENCY=2500000
+
+lib_deps = ${esp32s3.lib_deps}
+ ${esp32.AR_lib_deps}
+ ESP32 BLE Arduino
+ bodmer/TFT_eSPI @ 2.5.43
+ axlan/pixels-dice-interface @ 1.2.0
+
+# ------------------------------------------------------------------------------
+# ESP32S3 dev board with 8MB flash and no extended RAM.
+# ------------------------------------------------------------------------------
+[env:esp32s3dev_8MB_qspi_dice]
+board = esp32-s3-devkitc-1 ;; generic dev board;
+platform = ${esp32s3.platform}
+upload_speed = 921600
+build_unflags = ${common.build_unflags}
+board_build.partitions = ${esp32.large_partitions}
+board_build.f_flash = 80000000L
+board_build.flash_mode = qio
+monitor_filters = esp32_exception_decoder
+build_flags = ${common.build_flags} ${esp32s3.build_flags} -D WLED_RELEASE_NAME=ESP32-S3_8MB_qspi
+ -D CONFIG_LITTLEFS_FOR_IDF_3_2 -D WLED_WATCHDOG_TIMEOUT=0
+ -D ARDUINO_USB_CDC_ON_BOOT=1 -D ARDUINO_USB_MODE=1 ;; for boards with USB-OTG connector only (USBCDC or "TinyUSB")
+
+ -D USERMOD_PIXELS_DICE_TRAY ;; Enables this UserMod
+
+ ;-D WLED_DEBUG
+lib_deps = ${esp32s3.lib_deps}
+ ${esp32.AR_lib_deps}
+ ESP32 BLE Arduino
+ axlan/pixels-dice-interface @ 1.2.0
+
+# ------------------------------------------------------------------------------
+# ESP32 dev board without screen
+# ------------------------------------------------------------------------------
+# THIS DOES NOT WORK!!!!!!
+# While it builds and programs onto the device, I ran into a series of issues
+# trying to actually run.
+# Right after the AP init there's an allocation exception which claims to be in
+# the UDP server. There seems to be a ton of heap remaining, so the exact error
+# might be a red herring.
+# It appears that the BLE scanning task is conflicting with the networking tasks.
+# I was successfully running simple applications with the pixels-dice-interface
+# on ESP32 dev boards, so it may be an issue with too much being scheduled in
+# parallel. Also not clear exactly what difference between the ESP32 and the
+# ESP32S3 would be causing this, though they do run different BLE versions.
+# May be related to some of the issues discussed in:
+# https://github.com/Aircoookie/WLED/issues/1382
+; [env:esp32dev_dice]
+; extends = env:esp32dev
+; build_flags = ${common.build_flags} ${esp32.build_flags} -D WLED_RELEASE_NAME=ESP32
+; ; Enable Pixels dice mod
+; -D USERMOD_PIXELS_DICE_TRAY
+; lib_deps = ${esp32.lib_deps}
+; ESP32 BLE Arduino
+; axlan/pixels-dice-interface @ 1.2.0
+; ; Tiny file system partition, no core dump to fit BLE library.
+; board_build.partitions = usermods/pixels_dice_tray/WLED_ESP32_4MB_64KB_FS.csv
diff --git a/usermods/pixels_dice_tray/roll_info.h b/usermods/pixels_dice_tray/roll_info.h
new file mode 100644
index 000000000..fd8203134
--- /dev/null
+++ b/usermods/pixels_dice_tray/roll_info.h
@@ -0,0 +1,107 @@
+#pragma once
+
+#include
+
+extern TFT_eSPI tft;
+
+// The following functions are generated by:
+// usermods/pixels_dice_tray/generate_roll_info.py
+
+// GENERATED
+static void PrintRoll0() {
+ tft.setTextColor(63488);
+ tft.println("Barb Chain");
+ tft.setTextColor(65535);
+ tft.println("Atk/CMD 12");
+ tft.println("Range: 70");
+ tft.setTextSize(1);
+ tft.println("Summon 3 chains. Make");
+ tft.println("a melee atk 1d6 or a ");
+ tft.println("trip CMD=AT. On a hit");
+ tft.println("make Will save or sha");
+ tft.println("ken 1d4 rnds.");
+}
+
+static void PrintRoll1() {
+ tft.setTextColor(2016);
+ tft.println("Saves");
+ tft.setTextColor(65535);
+ tft.println("FORT 8");
+ tft.println("REFLEX 8");
+ tft.println("WILL 9");
+}
+
+static void PrintRoll2() {
+ tft.println("Skill");
+}
+
+static void PrintRoll3() {
+ tft.println("Attack");
+ tft.println("Melee +9");
+ tft.println("Range +6");
+}
+
+static void PrintRoll4() {
+ tft.println("Cure");
+ tft.println("Lit 1d8+5");
+ tft.println("Mod 2d8+9");
+ tft.println("Ser 3d8+9");
+}
+
+static void PrintRoll5() {
+ tft.println("Concentrat");
+ tft.println("+15");
+ tft.setTextSize(1);
+ tft.println("Defensive 15+2*SP_LV");
+ tft.println("Dmg 10+DMG+SP_LV");
+ tft.println("Grapple 10+CMB+SP_LV");
+}
+
+static const char* GetRollName(uint8_t key) {
+ switch (key) {
+ case 0:
+ return "Barb Chain";
+ case 1:
+ return "Saves";
+ case 2:
+ return "Skill";
+ case 3:
+ return "Attack";
+ case 4:
+ return "Cure";
+ case 5:
+ return "Concentrate";
+ }
+ return "";
+}
+
+static void PrintRollInfo(uint8_t key) {
+ tft.setTextColor(TFT_WHITE);
+ tft.setCursor(0, 0);
+ tft.setTextSize(2);
+ switch (key) {
+ case 0:
+ PrintRoll0();
+ return;
+ case 1:
+ PrintRoll1();
+ return;
+ case 2:
+ PrintRoll2();
+ return;
+ case 3:
+ PrintRoll3();
+ return;
+ case 4:
+ PrintRoll4();
+ return;
+ case 5:
+ PrintRoll5();
+ return;
+ }
+ tft.setTextColor(TFT_RED);
+ tft.setCursor(0, 60);
+ tft.println("Unknown");
+}
+
+static constexpr size_t NUM_ROLL_INFOS = 6;
diff --git a/usermods/pixels_dice_tray/tft_menu.h b/usermods/pixels_dice_tray/tft_menu.h
new file mode 100644
index 000000000..0b8fd8394
--- /dev/null
+++ b/usermods/pixels_dice_tray/tft_menu.h
@@ -0,0 +1,479 @@
+/**
+ * Code for using the 128x128 LCD and two buttons on the T-QT Pro as a GUI.
+ */
+#pragma once
+
+#ifndef TFT_WIDTH
+ #warning TFT parameters not specified, not using screen.
+#else
+ #include
+ #include // https://github.com/axlan/arduino-pixels-dice
+ #include "wled.h"
+
+ #include "dice_state.h"
+ #include "roll_info.h"
+
+ #define USING_TFT_DISPLAY 1
+
+ #ifndef TFT_BL
+ #define TFT_BL -1
+ #endif
+
+// Bitmask for icon
+const uint8_t LIGHTNING_ICON_8X8[] PROGMEM = {
+ 0b00001111, 0b00010010, 0b00100100, 0b01001111,
+ 0b10000001, 0b11110010, 0b00010100, 0b00011000,
+};
+
+TFT_eSPI tft = TFT_eSPI(TFT_WIDTH, TFT_HEIGHT);
+
+/**
+ * Print text with box surrounding it.
+ *
+ * @param txt Text to draw
+ * @param color Color for box lines
+ */
+static void PrintLnInBox(const char* txt, uint32_t color) {
+ int16_t sx = tft.getCursorX();
+ int16_t sy = tft.getCursorY();
+ tft.setCursor(sx + 2, sy);
+ tft.print(txt);
+ int16_t w = tft.getCursorX() - sx + 1;
+ tft.println();
+ int16_t h = tft.getCursorY() - sy - 1;
+ tft.drawRect(sx, sy, w, h, color);
+}
+
+/**
+ * Override the current colors for the selected segment to the defaults for the
+ * selected die effect.
+ */
+void SetDefaultColors(uint8_t mode) {
+ Segment& seg = strip.getFirstSelectedSeg();
+ if (mode == FX_MODE_SIMPLE_D20) {
+ seg.setColor(0, GREEN);
+ seg.setColor(1, 0);
+ } else if (mode == FX_MODE_PULSE_D20) {
+ seg.setColor(0, GREEN);
+ seg.setColor(1, RED);
+ } else if (mode == FX_MODE_CHECK_D20) {
+ seg.setColor(0, RED);
+ seg.setColor(1, 0);
+ seg.setColor(2, GREEN);
+ }
+}
+
+/**
+ * Get the pointer to the custom2 value for the current LED segment. This is
+ * used to set the target roll for relevant effects.
+ */
+static uint8_t* GetCurrentRollTarget() {
+ return &strip.getFirstSelectedSeg().custom2;
+}
+
+/**
+ * Class for drawing a histogram of roll results.
+ */
+class RollCountWidget {
+ private:
+ int16_t xs = 0;
+ int16_t ys = 0;
+ uint16_t border_color = TFT_RED;
+ uint16_t bar_color = TFT_GREEN;
+ uint16_t bar_width = 6;
+ uint16_t max_bar_height = 60;
+ unsigned roll_counts[20] = {0};
+ unsigned total = 0;
+ unsigned max_count = 0;
+
+ public:
+ RollCountWidget(int16_t xs = 0, int16_t ys = 0,
+ uint16_t border_color = TFT_RED,
+ uint16_t bar_color = TFT_GREEN, uint16_t bar_width = 6,
+ uint16_t max_bar_height = 60)
+ : xs(xs),
+ ys(ys),
+ border_color(border_color),
+ bar_color(bar_color),
+ bar_width(bar_width),
+ max_bar_height(max_bar_height) {}
+
+ void Clear() {
+ memset(roll_counts, 0, sizeof(roll_counts));
+ total = 0;
+ max_count = 0;
+ }
+
+ unsigned GetNumRolls() const { return total; }
+
+ void AddRoll(unsigned val) {
+ if (val > 19) {
+ return;
+ }
+ roll_counts[val]++;
+ total++;
+ max_count = max(roll_counts[val], max_count);
+ }
+
+ void Draw() {
+ // Add 2 pixels to lengths for boarder width.
+ tft.drawRect(xs, ys, bar_width * 20 + 2, max_bar_height + 2, border_color);
+ for (size_t i = 0; i < 20; i++) {
+ if (roll_counts[i] > 0) {
+ // Scale bar by highest count.
+ uint16_t bar_height = round(float(roll_counts[i]) / float(max_count) *
+ float(max_bar_height));
+ // Add space between bars
+ uint16_t padding = (bar_width > 1) ? 1 : 0;
+ // Need to start from top of bar and draw down
+ tft.fillRect(xs + 1 + bar_width * i,
+ ys + 1 + max_bar_height - bar_height, bar_width - padding,
+ bar_height, bar_color);
+ }
+ }
+ }
+};
+
+enum class ButtonType { SINGLE, DOUBLE, LONG };
+
+// Base class for different menu pages.
+class MenuBase {
+ public:
+ /**
+ * Handle new die events and connections. Called even when menu isn't visible.
+ */
+ virtual void Update(const DiceUpdate& dice_update) = 0;
+
+ /**
+ * Draw menu to the screen.
+ */
+ virtual void Draw(const DiceUpdate& dice_update, bool force_redraw) = 0;
+
+ /**
+ * Handle button presses if the menu is currently active.
+ */
+ virtual void HandleButton(ButtonType type, uint8_t b) = 0;
+
+ protected:
+ static DiceSettings* settings;
+ friend class MenuController;
+};
+DiceSettings* MenuBase::settings = nullptr;
+
+/**
+ * Menu to show connection status and roll histograms.
+ */
+class DiceStatusMenu : public MenuBase {
+ public:
+ DiceStatusMenu()
+ : die_roll_counts{RollCountWidget{0, 20, TFT_BLUE, TFT_GREEN, 6, 40},
+ RollCountWidget{0, SECTION_HEIGHT + 20, TFT_BLUE,
+ TFT_GREEN, 6, 40}} {}
+
+ void Update(const DiceUpdate& dice_update) override {
+ for (size_t i = 0; i < MAX_NUM_DICE; i++) {
+ const auto die_id = dice_update.connected_die_ids[i];
+ const auto connected = die_id != 0;
+ // Redraw if connection status changed.
+ die_updated[i] |= die_id != last_die_ids[i];
+ last_die_ids[i] = die_id;
+
+ if (connected) {
+ bool charging = false;
+ for (const auto& battery : dice_update.battery_updates) {
+ if (battery.first == die_id) {
+ if (die_battery[i].battery_level == INVALID_BATTERY ||
+ battery.second.is_charging != die_battery[i].is_charging) {
+ die_updated[i] = true;
+ }
+ die_battery[i] = battery.second;
+ }
+ }
+
+ for (const auto& roll : dice_update.roll_updates) {
+ if (roll.first == die_id &&
+ roll.second.state == pixels::RollState::ON_FACE) {
+ die_roll_counts[i].AddRoll(roll.second.current_face);
+ die_updated[i] = true;
+ }
+ }
+ }
+ }
+ }
+
+ void Draw(const DiceUpdate& dice_update, bool force_redraw) override {
+ // This could probably be optimized for partial redraws.
+ for (size_t i = 0; i < MAX_NUM_DICE; i++) {
+ const int16_t ys = SECTION_HEIGHT * i;
+ const auto die_id = dice_update.connected_die_ids[i];
+ const auto connected = die_id != 0;
+ // Screen updates might be slow, yield in case network task needs to do
+ // work.
+ yield();
+ bool battery_update =
+ connected && (millis() - last_update[i] > BATTERY_REFRESH_RATE_MS);
+ if (force_redraw || die_updated[i] || battery_update) {
+ last_update[i] = millis();
+ tft.fillRect(0, ys, TFT_WIDTH, SECTION_HEIGHT, TFT_BLACK);
+ tft.drawRect(0, ys, TFT_WIDTH, SECTION_HEIGHT, TFT_BLUE);
+ if (settings->configured_die_names[i].empty()) {
+ tft.setTextColor(TFT_RED);
+ tft.setCursor(2, ys + 4);
+ tft.setTextSize(2);
+ tft.println("Connection");
+ tft.setCursor(2, tft.getCursorY());
+ tft.println("Disabled");
+ } else if (!connected) {
+ tft.setTextColor(TFT_RED);
+ tft.setCursor(2, ys + 4);
+ tft.setTextSize(2);
+ tft.println(settings->configured_die_names[i].c_str());
+ tft.setCursor(2, tft.getCursorY());
+ tft.print("Waiting...");
+ } else {
+ tft.setTextColor(TFT_WHITE);
+ tft.setCursor(0, ys + 2);
+ tft.setTextSize(1);
+ tft.println(settings->configured_die_names[i].c_str());
+ tft.print("Cnt ");
+ tft.print(die_roll_counts[i].GetNumRolls());
+ if (die_battery[i].battery_level != INVALID_BATTERY) {
+ tft.print(" Bat ");
+ tft.print(die_battery[i].battery_level);
+ tft.print("%");
+ if (die_battery[i].is_charging) {
+ tft.drawBitmap(tft.getCursorX(), tft.getCursorY(),
+ LIGHTNING_ICON_8X8, 8, 8, TFT_YELLOW);
+ }
+ }
+ die_roll_counts[i].Draw();
+ }
+ die_updated[i] = false;
+ }
+ }
+ }
+
+ void HandleButton(ButtonType type, uint8_t b) override {
+ if (type == ButtonType::LONG) {
+ for (size_t i = 0; i < MAX_NUM_DICE; i++) {
+ die_roll_counts[i].Clear();
+ die_updated[i] = true;
+ }
+ }
+ };
+
+ private:
+ static constexpr long BATTERY_REFRESH_RATE_MS = 60 * 1000;
+ static constexpr int16_t SECTION_HEIGHT = TFT_HEIGHT / MAX_NUM_DICE;
+ static constexpr uint8_t INVALID_BATTERY = 0xFF;
+ std::array last_update{0, 0};
+ std::array last_die_ids{0, 0};
+ std::array die_updated{false, false};
+ std::array die_battery = {
+ pixels::BatteryEvent{INVALID_BATTERY, false},
+ pixels::BatteryEvent{INVALID_BATTERY, false}};
+ std::array die_roll_counts;
+};
+
+/**
+ * Some limited controls for setting the die effects on the current LED
+ * segment.
+ */
+class EffectMenu : public MenuBase {
+ public:
+ EffectMenu() = default;
+
+ void Update(const DiceUpdate& dice_update) override {}
+
+ void Draw(const DiceUpdate& dice_update, bool force_redraw) override {
+ // NOTE: This doesn't update automatically if the effect is updated on the
+ // web UI and vice-versa.
+ if (force_redraw) {
+ tft.fillScreen(TFT_BLACK);
+ uint8_t mode = strip.getFirstSelectedSeg().mode;
+ if (Contains(DIE_LED_MODES, mode)) {
+ char lineBuffer[CHAR_WIDTH_BIG + 1];
+ extractModeName(mode, JSON_mode_names, lineBuffer, CHAR_WIDTH_BIG);
+ tft.setTextColor(TFT_WHITE);
+ tft.setCursor(0, 0);
+ tft.setTextSize(2);
+ PrintLnInBox(lineBuffer, (field_idx == 0) ? TFT_BLUE : TFT_BLACK);
+ if (mode == FX_MODE_CHECK_D20) {
+ snprintf(lineBuffer, sizeof(lineBuffer), "PASS: %u",
+ *GetCurrentRollTarget());
+ PrintLnInBox(lineBuffer, (field_idx == 1) ? TFT_BLUE : TFT_BLACK);
+ }
+ } else {
+ char lineBuffer[CHAR_WIDTH_SMALL + 1];
+ extractModeName(mode, JSON_mode_names, lineBuffer, CHAR_WIDTH_SMALL);
+ tft.setTextColor(TFT_WHITE);
+ tft.setCursor(0, 0);
+ tft.setTextSize(1);
+ tft.println(lineBuffer);
+ }
+ }
+ }
+
+ /**
+ * Button 0 navigates up and down the settings for the effect.
+ * Button 1 changes the value for the selected settings.
+ * Long pressing a button resets the effect parameters to their defaults for
+ * the current die effect.
+ */
+ void HandleButton(ButtonType type, uint8_t b) override {
+ Segment& seg = strip.getFirstSelectedSeg();
+ auto mode_itr =
+ std::find(DIE_LED_MODES.begin(), DIE_LED_MODES.end(), seg.mode);
+ if (mode_itr != DIE_LED_MODES.end()) {
+ mode_idx = mode_itr - DIE_LED_MODES.begin();
+ }
+
+ if (mode_itr == DIE_LED_MODES.end()) {
+ seg.setMode(DIE_LED_MODES[mode_idx]);
+ } else {
+ if (type == ButtonType::LONG) {
+ // Need to set mode to different value so defaults are actually loaded.
+ seg.setMode(0);
+ seg.setMode(DIE_LED_MODES[mode_idx], true);
+ SetDefaultColors(DIE_LED_MODES[mode_idx]);
+ } else if (b == 0) {
+ field_idx = (field_idx + 1) % DIE_LED_MODE_NUM_FIELDS[mode_idx];
+ } else {
+ if (field_idx == 0) {
+ mode_idx = (mode_idx + 1) % DIE_LED_MODES.size();
+ seg.setMode(DIE_LED_MODES[mode_idx]);
+ } else if (DIE_LED_MODES[mode_idx] == FX_MODE_CHECK_D20 &&
+ field_idx == 1) {
+ *GetCurrentRollTarget() = GetLastRoll().current_face + 1;
+ }
+ }
+ }
+ };
+
+ private:
+ static constexpr std::array DIE_LED_MODE_NUM_FIELDS = {1, 1, 2};
+ static constexpr size_t CHAR_WIDTH_BIG = 10;
+ static constexpr size_t CHAR_WIDTH_SMALL = 21;
+ size_t mode_idx = 0;
+ size_t field_idx = 0;
+};
+
+constexpr std::array EffectMenu::DIE_LED_MODE_NUM_FIELDS;
+
+/**
+ * Menu for setting the roll label and some info for that roll type.
+ */
+class InfoMenu : public MenuBase {
+ public:
+ InfoMenu() = default;
+
+ void Update(const DiceUpdate& dice_update) override {}
+
+ void Draw(const DiceUpdate& dice_update, bool force_redraw) override {
+ if (force_redraw) {
+ tft.fillScreen(TFT_BLACK);
+ if (settings->roll_label != INVALID_ROLL_VALUE) {
+ PrintRollInfo(settings->roll_label);
+ } else {
+ tft.setTextColor(TFT_RED);
+ tft.setCursor(0, 60);
+ tft.setTextSize(2);
+ tft.println("Set Roll");
+ }
+ }
+ }
+
+ /**
+ * Single clicking navigates through the roll types. Button 0 goes down, and
+ * button 1 goes up with wrapping.
+ */
+ void HandleButton(ButtonType type, uint8_t b) override {
+ if (settings->roll_label >= NUM_ROLL_INFOS) {
+ settings->roll_label = 0;
+ } else if (b == 0) {
+ settings->roll_label = (settings->roll_label == 0)
+ ? NUM_ROLL_INFOS - 1
+ : settings->roll_label - 1;
+ } else if (b == 1) {
+ settings->roll_label = (settings->roll_label + 1) % NUM_ROLL_INFOS;
+ }
+ if (WLED_MQTT_CONNECTED) {
+ char mqtt_topic_buffer[MQTT_MAX_TOPIC_LEN + 16];
+ snprintf(mqtt_topic_buffer, sizeof(mqtt_topic_buffer), PSTR("%s/%s"),
+ mqttDeviceTopic, "dice/settings->roll_label");
+ mqtt->publish(mqtt_topic_buffer, 0, false,
+ GetRollName(settings->roll_label));
+ }
+ };
+};
+
+/**
+ * Interface for the rest of the app to update the menus.
+ */
+class MenuController {
+ public:
+ MenuController(DiceSettings* settings) { MenuBase::settings = settings; }
+
+ void Init(unsigned rotation) {
+ tft.init();
+ tft.setRotation(rotation);
+ tft.fillScreen(TFT_BLACK);
+ tft.setTextColor(TFT_RED);
+ tft.setCursor(0, 60);
+ tft.setTextDatum(MC_DATUM);
+ tft.setTextSize(2);
+ EnableBacklight(true);
+
+ force_redraw = true;
+ }
+
+ // Set the pin to turn the backlight on or off if available.
+ static void EnableBacklight(bool enable) {
+ #if TFT_BL > 0
+ #if USERMOD_PIXELS_DICE_TRAY_BL_ACTIVE_LOW
+ enable = !enable;
+ #endif
+ digitalWrite(TFT_BL, enable);
+ #endif
+ }
+
+ /**
+ * Double clicking navigates between menus. Button 0 goes down, and button 1
+ * goes up with wrapping.
+ */
+ void HandleButton(ButtonType type, uint8_t b) {
+ force_redraw = true;
+ // Switch menus with double click
+ if (ButtonType::DOUBLE == type) {
+ if (b == 0) {
+ current_index =
+ (current_index == 0) ? menu_ptrs.size() - 1 : current_index - 1;
+ } else {
+ current_index = (current_index + 1) % menu_ptrs.size();
+ }
+ } else {
+ menu_ptrs[current_index]->HandleButton(type, b);
+ }
+ }
+
+ void Update(const DiceUpdate& dice_update) {
+ for (auto menu_ptr : menu_ptrs) {
+ menu_ptr->Update(dice_update);
+ }
+ menu_ptrs[current_index]->Draw(dice_update, force_redraw);
+ force_redraw = false;
+ }
+
+ void Redraw() { force_redraw = true; }
+
+ private:
+ size_t current_index = 0;
+ bool force_redraw = true;
+
+ DiceStatusMenu status_menu;
+ EffectMenu effect_menu;
+ InfoMenu info_menu;
+ const std::array menu_ptrs = {&status_menu, &effect_menu,
+ &info_menu};
+};
+#endif
diff --git a/usermods/pov_display/usermod_pov_display.h b/usermods/pov_display/usermod_pov_display.h
new file mode 100644
index 000000000..b1fc0dba6
--- /dev/null
+++ b/usermods/pov_display/usermod_pov_display.h
@@ -0,0 +1,85 @@
+#pragma once
+#include "wled.h"
+#include
+
+void * openFile(const char *filename, int32_t *size) {
+ f = WLED_FS.open(filename);
+ *size = f.size();
+ return &f;
+}
+
+void closeFile(void *handle) {
+ if (f) f.close();
+}
+
+int32_t readFile(PNGFILE *pFile, uint8_t *pBuf, int32_t iLen)
+{
+ int32_t iBytesRead;
+ iBytesRead = iLen;
+ File *f = static_cast(pFile->fHandle);
+ // Note: If you read a file all the way to the last byte, seek() stops working
+ if ((pFile->iSize - pFile->iPos) < iLen)
+ iBytesRead = pFile->iSize - pFile->iPos - 1; // <-- ugly work-around
+ if (iBytesRead <= 0)
+ return 0;
+ iBytesRead = (int32_t)f->read(pBuf, iBytesRead);
+ pFile->iPos = f->position();
+ return iBytesRead;
+}
+
+int32_t seekFile(PNGFILE *pFile, int32_t iPosition)
+{
+ int i = micros();
+ File *f = static_cast(pFile->fHandle);
+ f->seek(iPosition);
+ pFile->iPos = (int32_t)f->position();
+ i = micros() - i;
+ return pFile->iPos;
+}
+
+void draw(PNGDRAW *pDraw) {
+ uint16_t usPixels[SEGLEN];
+ png.getLineAsRGB565(pDraw, usPixels, PNG_RGB565_LITTLE_ENDIAN, 0xffffffff);
+ for(int x=0; x < SEGLEN; x++) {
+ uint16_t color = usPixels[x];
+ byte r = ((color >> 11) & 0x1F);
+ byte g = ((color >> 5) & 0x3F);
+ byte b = (color & 0x1F);
+ SEGMENT.setPixelColor(x, RGBW32(r,g,b,0));
+ }
+ strip.show();
+}
+
+uint16_t mode_pov_image(void) {
+ const char * filepath = SEGMENT.name;
+ int rc = png.open(filepath, openFile, closeFile, readFile, seekFile, draw);
+ if (rc == PNG_SUCCESS) {
+ rc = png.decode(NULL, 0);
+ png.close();
+ return FRAMETIME;
+ }
+ return FRAMETIME;
+}
+
+class PovDisplayUsermod : public Usermod
+{
+ public:
+ static const char _data_FX_MODE_POV_IMAGE[] PROGMEM = "POV Image@!;;;1";
+
+ PNG png;
+ File f;
+
+ void setup() {
+ strip.addEffect(255, &mode_pov_image, _data_FX_MODE_POV_IMAGE);
+ }
+
+ void loop() {
+ }
+
+ uint16_t getId()
+ {
+ return USERMOD_ID_POV_DISPLAY;
+ }
+
+ void connected() {}
+};
diff --git a/usermods/pwm_outputs/usermod_pwm_outputs.h b/usermods/pwm_outputs/usermod_pwm_outputs.h
index c09ea88ec..78902ff71 100644
--- a/usermods/pwm_outputs/usermod_pwm_outputs.h
+++ b/usermods/pwm_outputs/usermod_pwm_outputs.h
@@ -29,13 +29,13 @@ class PwmOutput {
return;
DEBUGUM_PRINTF("pwm_output[%d]: setup to freq %d\n", pin_, freq_);
- if (!pinManager.allocatePin(pin_, true, PinOwner::UM_PWM_OUTPUTS))
+ if (!PinManager::allocatePin(pin_, true, PinOwner::UM_PWM_OUTPUTS))
return;
- channel_ = pinManager.allocateLedc(1);
+ channel_ = PinManager::allocateLedc(1);
if (channel_ == 255) {
DEBUGUM_PRINTF("pwm_output[%d]: failed to quire ledc\n", pin_);
- pinManager.deallocatePin(pin_, PinOwner::UM_PWM_OUTPUTS);
+ PinManager::deallocatePin(pin_, PinOwner::UM_PWM_OUTPUTS);
return;
}
@@ -49,9 +49,9 @@ class PwmOutput {
DEBUGUM_PRINTF("pwm_output[%d]: close\n", pin_);
if (!enabled_)
return;
- pinManager.deallocatePin(pin_, PinOwner::UM_PWM_OUTPUTS);
+ PinManager::deallocatePin(pin_, PinOwner::UM_PWM_OUTPUTS);
if (channel_ != 255)
- pinManager.deallocateLedc(channel_, 1);
+ PinManager::deallocateLedc(channel_, 1);
channel_ = 255;
duty_ = 0.0f;
enabled_ = false;
diff --git a/usermods/quinled-an-penta/quinled-an-penta.h b/usermods/quinled-an-penta/quinled-an-penta.h
index c4da11fb9..3ce30a874 100644
--- a/usermods/quinled-an-penta/quinled-an-penta.h
+++ b/usermods/quinled-an-penta/quinled-an-penta.h
@@ -129,7 +129,7 @@ class QuinLEDAnPentaUsermod : public Usermod
void initOledDisplay()
{
PinManagerPinType pins[5] = { { oledSpiClk, true }, { oledSpiData, true }, { oledSpiCs, true }, { oledSpiDc, true }, { oledSpiRst, true } };
- if (!pinManager.allocateMultiplePins(pins, 5, PinOwner::UM_QuinLEDAnPenta)) {
+ if (!PinManager::allocateMultiplePins(pins, 5, PinOwner::UM_QuinLEDAnPenta)) {
DEBUGUM_PRINTF("[%s] OLED pin allocation failed!\n", _name);
oledEnabled = oledInitDone = false;
return;
@@ -164,11 +164,11 @@ class QuinLEDAnPentaUsermod : public Usermod
oledDisplay->clear();
}
- pinManager.deallocatePin(oledSpiClk, PinOwner::UM_QuinLEDAnPenta);
- pinManager.deallocatePin(oledSpiData, PinOwner::UM_QuinLEDAnPenta);
- pinManager.deallocatePin(oledSpiCs, PinOwner::UM_QuinLEDAnPenta);
- pinManager.deallocatePin(oledSpiDc, PinOwner::UM_QuinLEDAnPenta);
- pinManager.deallocatePin(oledSpiRst, PinOwner::UM_QuinLEDAnPenta);
+ PinManager::deallocatePin(oledSpiClk, PinOwner::UM_QuinLEDAnPenta);
+ PinManager::deallocatePin(oledSpiData, PinOwner::UM_QuinLEDAnPenta);
+ PinManager::deallocatePin(oledSpiCs, PinOwner::UM_QuinLEDAnPenta);
+ PinManager::deallocatePin(oledSpiDc, PinOwner::UM_QuinLEDAnPenta);
+ PinManager::deallocatePin(oledSpiRst, PinOwner::UM_QuinLEDAnPenta);
delete oledDisplay;
@@ -184,7 +184,7 @@ class QuinLEDAnPentaUsermod : public Usermod
void initSht30TempHumiditySensor()
{
PinManagerPinType pins[2] = { { shtSda, true }, { shtScl, true } };
- if (!pinManager.allocateMultiplePins(pins, 2, PinOwner::UM_QuinLEDAnPenta)) {
+ if (!PinManager::allocateMultiplePins(pins, 2, PinOwner::UM_QuinLEDAnPenta)) {
DEBUGUM_PRINTF("[%s] SHT30 pin allocation failed!\n", _name);
shtEnabled = shtInitDone = false;
return;
@@ -212,8 +212,8 @@ class QuinLEDAnPentaUsermod : public Usermod
sht30TempHumidSensor->reset();
}
- pinManager.deallocatePin(shtSda, PinOwner::UM_QuinLEDAnPenta);
- pinManager.deallocatePin(shtScl, PinOwner::UM_QuinLEDAnPenta);
+ PinManager::deallocatePin(shtSda, PinOwner::UM_QuinLEDAnPenta);
+ PinManager::deallocatePin(shtScl, PinOwner::UM_QuinLEDAnPenta);
delete sht30TempHumidSensor;
diff --git a/usermods/rgb-rotary-encoder/rgb-rotary-encoder.h b/usermods/rgb-rotary-encoder/rgb-rotary-encoder.h
index c051068cd..757e8699c 100644
--- a/usermods/rgb-rotary-encoder/rgb-rotary-encoder.h
+++ b/usermods/rgb-rotary-encoder/rgb-rotary-encoder.h
@@ -40,7 +40,7 @@ class RgbRotaryEncoderUsermod : public Usermod
void initRotaryEncoder()
{
PinManagerPinType pins[2] = { { eaIo, false }, { ebIo, false } };
- if (!pinManager.allocateMultiplePins(pins, 2, PinOwner::UM_RGBRotaryEncoder)) {
+ if (!PinManager::allocateMultiplePins(pins, 2, PinOwner::UM_RGBRotaryEncoder)) {
eaIo = -1;
ebIo = -1;
cleanup();
@@ -108,11 +108,11 @@ class RgbRotaryEncoderUsermod : public Usermod
{
// Only deallocate pins if we allocated them ;)
if (eaIo != -1) {
- pinManager.deallocatePin(eaIo, PinOwner::UM_RGBRotaryEncoder);
+ PinManager::deallocatePin(eaIo, PinOwner::UM_RGBRotaryEncoder);
eaIo = -1;
}
if (ebIo != -1) {
- pinManager.deallocatePin(ebIo, PinOwner::UM_RGBRotaryEncoder);
+ PinManager::deallocatePin(ebIo, PinOwner::UM_RGBRotaryEncoder);
ebIo = -1;
}
@@ -303,8 +303,8 @@ class RgbRotaryEncoderUsermod : public Usermod
}
if (eaIo != oldEaIo || ebIo != oldEbIo || stepsPerClick != oldStepsPerClick || incrementPerClick != oldIncrementPerClick) {
- pinManager.deallocatePin(oldEaIo, PinOwner::UM_RGBRotaryEncoder);
- pinManager.deallocatePin(oldEbIo, PinOwner::UM_RGBRotaryEncoder);
+ PinManager::deallocatePin(oldEaIo, PinOwner::UM_RGBRotaryEncoder);
+ PinManager::deallocatePin(oldEbIo, PinOwner::UM_RGBRotaryEncoder);
delete rotaryEncoder;
initRotaryEncoder();
diff --git a/usermods/sd_card/usermod_sd_card.h b/usermods/sd_card/usermod_sd_card.h
index 281baafeb..3b9dc54f6 100644
--- a/usermods/sd_card/usermod_sd_card.h
+++ b/usermods/sd_card/usermod_sd_card.h
@@ -45,7 +45,7 @@ class UsermodSdCard : public Usermod {
{ configPinPico, true }
};
- if (!pinManager.allocateMultiplePins(pins, 4, PinOwner::UM_SdCard)) {
+ if (!PinManager::allocateMultiplePins(pins, 4, PinOwner::UM_SdCard)) {
DEBUGUM_PRINTF("[%s] SD (SPI) pin allocation failed!\n", _name);
sdInitDone = false;
return;
@@ -75,10 +75,10 @@ class UsermodSdCard : public Usermod {
SD_ADAPTER.end();
DEBUGUM_PRINTF("[%s] deallocate pins!\n", _name);
- pinManager.deallocatePin(configPinSourceSelect, PinOwner::UM_SdCard);
- pinManager.deallocatePin(configPinSourceClock, PinOwner::UM_SdCard);
- pinManager.deallocatePin(configPinPoci, PinOwner::UM_SdCard);
- pinManager.deallocatePin(configPinPico, PinOwner::UM_SdCard);
+ PinManager::deallocatePin(configPinSourceSelect, PinOwner::UM_SdCard);
+ PinManager::deallocatePin(configPinSourceClock, PinOwner::UM_SdCard);
+ PinManager::deallocatePin(configPinPoci, PinOwner::UM_SdCard);
+ PinManager::deallocatePin(configPinPico, PinOwner::UM_SdCard);
sdInitDone = false;
}
diff --git a/usermods/seven_segment_display_reloaded/usermod_seven_segment_reloaded.h b/usermods/seven_segment_display_reloaded/usermod_seven_segment_reloaded.h
index 366771bd7..efef2d21b 100644
--- a/usermods/seven_segment_display_reloaded/usermod_seven_segment_reloaded.h
+++ b/usermods/seven_segment_display_reloaded/usermod_seven_segment_reloaded.h
@@ -165,7 +165,7 @@ private:
void _showElements(String *map, int timevar, bool isColon, bool removeZero
) {
- if (!(*map).equals("") && !(*map) == NULL) {
+ if ((map != nullptr) && (*map != nullptr) && !(*map).equals("")) {
int length = String(timevar).length();
bool addZero = false;
if (length == 1) {
@@ -236,11 +236,13 @@ private:
}
void _setLeds(int lednr, int lastSeenLedNr, bool range, int countSegments, int number, bool colon) {
+ if ((lednr < 0) || (lednr >= umSSDRLength)) return; // prevent array bounds violation
+ if (!(colon && umSSDRColonblink) && ((number < 0) || (countSegments < 0))) return;
if ((colon && umSSDRColonblink) || umSSDRNumbers[number][countSegments]) {
if (range) {
- for(int i = lastSeenLedNr; i <= lednr; i++) {
+ for(int i = max(0, lastSeenLedNr); i <= lednr; i++) {
umSSDRMask[i] = true;
}
} else {
@@ -383,7 +385,7 @@ public:
_setAllFalse();
#ifdef USERMOD_SN_PHOTORESISTOR
- ptr = (Usermod_SN_Photoresistor*) usermods.lookup(USERMOD_ID_SN_PHOTORESISTOR);
+ ptr = (Usermod_SN_Photoresistor*) UsermodManager::lookup(USERMOD_ID_SN_PHOTORESISTOR);
#endif
DEBUGUM_PRINTLN(F("Setup done"));
}
diff --git a/usermods/usermod_v2_HttpPullLightControl/readme.md b/usermods/usermod_v2_HttpPullLightControl/readme.md
index cf7f971f7..eb56d505d 100644
--- a/usermods/usermod_v2_HttpPullLightControl/readme.md
+++ b/usermods/usermod_v2_HttpPullLightControl/readme.md
@@ -93,7 +93,7 @@ After getting the URL (it can be a static file like static.json or a mylogic.php
- -D ABL_MILLIAMPS_DEFAULT=450
- -D DEFAULT_LED_COUNT=60 ; For a LED Ring of 60 LEDs
- -D BTNPIN=41 ; The M5Stack Atom S3 Lite has a button on GPIO41
-- -D LEDPIN=2 ; The M5Stack Atom S3 Lite has a Grove connector on the front, we use this GPIO2
+- -D DATA_PINS=2 ; The M5Stack Atom S3 Lite has a Grove connector on the front, we use this GPIO2
- -D STATUSLED=35 ; The M5Stack Atom S3 Lite has a Multi-Color LED on GPIO35, although I didnt managed to control it
- -D IRPIN=4 ; The M5Stack Atom S3 Lite has a IR LED on GPIO4
diff --git a/usermods/usermod_v2_auto_save/usermod_v2_auto_save.h b/usermods/usermod_v2_auto_save/usermod_v2_auto_save.h
index 229cef3ff..6229b7713 100644
--- a/usermods/usermod_v2_auto_save/usermod_v2_auto_save.h
+++ b/usermods/usermod_v2_auto_save/usermod_v2_auto_save.h
@@ -103,7 +103,7 @@ class AutoSaveUsermod : public Usermod {
#ifdef USERMOD_FOUR_LINE_DISPLAY
// This Usermod has enhanced functionality if
// FourLineDisplayUsermod is available.
- display = (FourLineDisplayUsermod*) usermods.lookup(USERMOD_ID_FOUR_LINE_DISP);
+ display = (FourLineDisplayUsermod*) UsermodManager::lookup(USERMOD_ID_FOUR_LINE_DISP);
#endif
initDone = true;
if (enabled && applyAutoSaveOnBoot) applyPreset(autoSavePreset);
diff --git a/usermods/usermod_v2_four_line_display_ALT/usermod_v2_four_line_display_ALT.h b/usermods/usermod_v2_four_line_display_ALT/usermod_v2_four_line_display_ALT.h
index 532f15cc0..d579c924b 100644
--- a/usermods/usermod_v2_four_line_display_ALT/usermod_v2_four_line_display_ALT.h
+++ b/usermods/usermod_v2_four_line_display_ALT/usermod_v2_four_line_display_ALT.h
@@ -543,7 +543,7 @@ void FourLineDisplayUsermod::setup() {
type = NONE;
} else {
PinManagerPinType cspins[3] = { { ioPin[0], true }, { ioPin[1], true }, { ioPin[2], true } };
- if (!pinManager.allocateMultiplePins(cspins, 3, PinOwner::UM_FourLineDisplay)) { type = NONE; }
+ if (!PinManager::allocateMultiplePins(cspins, 3, PinOwner::UM_FourLineDisplay)) { type = NONE; }
}
} else {
if (i2c_scl<0 || i2c_sda<0) { type=NONE; }
@@ -569,7 +569,7 @@ void FourLineDisplayUsermod::setup() {
if (nullptr == u8x8) {
DEBUGUM_PRINTLN(F("Display init failed."));
if (isSPI) {
- pinManager.deallocateMultiplePins((const uint8_t*)ioPin, 3, PinOwner::UM_FourLineDisplay);
+ PinManager::deallocateMultiplePins((const uint8_t*)ioPin, 3, PinOwner::UM_FourLineDisplay);
}
type = NONE;
return;
@@ -1307,7 +1307,7 @@ bool FourLineDisplayUsermod::readFromConfig(JsonObject& root) {
bool isSPI = (type == SSD1306_SPI || type == SSD1306_SPI64 || type == SSD1309_SPI64);
bool newSPI = (newType == SSD1306_SPI || newType == SSD1306_SPI64 || newType == SSD1309_SPI64);
if (isSPI) {
- if (pinsChanged || !newSPI) pinManager.deallocateMultiplePins((const uint8_t*)oldPin, 3, PinOwner::UM_FourLineDisplay);
+ if (pinsChanged || !newSPI) PinManager::deallocateMultiplePins((const uint8_t*)oldPin, 3, PinOwner::UM_FourLineDisplay);
if (!newSPI) {
// was SPI but is no longer SPI
if (i2c_scl<0 || i2c_sda<0) { newType=NONE; }
@@ -1315,7 +1315,7 @@ bool FourLineDisplayUsermod::readFromConfig(JsonObject& root) {
// still SPI but pins changed
PinManagerPinType cspins[3] = { { ioPin[0], true }, { ioPin[1], true }, { ioPin[2], true } };
if (ioPin[0]<0 || ioPin[1]<0 || ioPin[1]<0) { newType=NONE; }
- else if (!pinManager.allocateMultiplePins(cspins, 3, PinOwner::UM_FourLineDisplay)) { newType=NONE; }
+ else if (!PinManager::allocateMultiplePins(cspins, 3, PinOwner::UM_FourLineDisplay)) { newType=NONE; }
}
} else if (newSPI) {
// was I2C but is now SPI
@@ -1324,7 +1324,7 @@ bool FourLineDisplayUsermod::readFromConfig(JsonObject& root) {
} else {
PinManagerPinType pins[3] = { { ioPin[0], true }, { ioPin[1], true }, { ioPin[2], true } };
if (ioPin[0]<0 || ioPin[1]<0 || ioPin[1]<0) { newType=NONE; }
- else if (!pinManager.allocateMultiplePins(pins, 3, PinOwner::UM_FourLineDisplay)) { newType=NONE; }
+ else if (!PinManager::allocateMultiplePins(pins, 3, PinOwner::UM_FourLineDisplay)) { newType=NONE; }
}
} else {
// just I2C type changed
diff --git a/usermods/usermod_v2_rotary_encoder_ui_ALT/usermod_v2_rotary_encoder_ui_ALT.h b/usermods/usermod_v2_rotary_encoder_ui_ALT/usermod_v2_rotary_encoder_ui_ALT.h
index 64a6bc94b..722478249 100644
--- a/usermods/usermod_v2_rotary_encoder_ui_ALT/usermod_v2_rotary_encoder_ui_ALT.h
+++ b/usermods/usermod_v2_rotary_encoder_ui_ALT/usermod_v2_rotary_encoder_ui_ALT.h
@@ -489,7 +489,7 @@ void RotaryEncoderUIUsermod::setup()
enabled = false;
return;
} else {
- if (pinIRQ >= 0 && pinManager.allocatePin(pinIRQ, false, PinOwner::UM_RotaryEncoderUI)) {
+ if (pinIRQ >= 0 && PinManager::allocatePin(pinIRQ, false, PinOwner::UM_RotaryEncoderUI)) {
pinMode(pinIRQ, INPUT_PULLUP);
attachInterrupt(pinIRQ, i2cReadingISR, FALLING); // RISING, FALLING, CHANGE, ONLOW, ONHIGH
DEBUGUM_PRINTLN(F("Interrupt attached."));
@@ -502,7 +502,7 @@ void RotaryEncoderUIUsermod::setup()
}
} else {
PinManagerPinType pins[3] = { { pinA, false }, { pinB, false }, { pinC, false } };
- if (pinA<0 || pinB<0 || !pinManager.allocateMultiplePins(pins, 3, PinOwner::UM_RotaryEncoderUI)) {
+ if (pinA<0 || pinB<0 || !PinManager::allocateMultiplePins(pins, 3, PinOwner::UM_RotaryEncoderUI)) {
pinA = pinB = pinC = -1;
enabled = false;
return;
@@ -525,7 +525,7 @@ void RotaryEncoderUIUsermod::setup()
#ifdef USERMOD_FOUR_LINE_DISPLAY
// This Usermod uses FourLineDisplayUsermod for the best experience.
// But it's optional. But you want it.
- display = (FourLineDisplayUsermod*) usermods.lookup(USERMOD_ID_FOUR_LINE_DISP);
+ display = (FourLineDisplayUsermod*) UsermodManager::lookup(USERMOD_ID_FOUR_LINE_DISP);
if (display != nullptr) {
display->setMarkLine(1, 0);
}
@@ -1138,14 +1138,14 @@ bool RotaryEncoderUIUsermod::readFromConfig(JsonObject &root) {
if (oldPcf8574) {
if (pinIRQ >= 0) {
detachInterrupt(pinIRQ);
- pinManager.deallocatePin(pinIRQ, PinOwner::UM_RotaryEncoderUI);
+ PinManager::deallocatePin(pinIRQ, PinOwner::UM_RotaryEncoderUI);
DEBUGUM_PRINTLN(F("Deallocated old IRQ pin."));
}
pinIRQ = newIRQpin<100 ? newIRQpin : -1; // ignore PCF8574 pins
} else {
- pinManager.deallocatePin(pinA, PinOwner::UM_RotaryEncoderUI);
- pinManager.deallocatePin(pinB, PinOwner::UM_RotaryEncoderUI);
- pinManager.deallocatePin(pinC, PinOwner::UM_RotaryEncoderUI);
+ PinManager::deallocatePin(pinA, PinOwner::UM_RotaryEncoderUI);
+ PinManager::deallocatePin(pinB, PinOwner::UM_RotaryEncoderUI);
+ PinManager::deallocatePin(pinC, PinOwner::UM_RotaryEncoderUI);
DEBUGUM_PRINTLN(F("Deallocated old pins."));
}
pinA = newDTpin;
diff --git a/wled00/FX.cpp b/wled00/FX.cpp
index bded21060..ad843f0f9 100644
--- a/wled00/FX.cpp
+++ b/wled00/FX.cpp
@@ -73,6 +73,15 @@ int8_t tristate_square8(uint8_t x, uint8_t pulsewidth, uint8_t attdec) {
return 0;
}
+static um_data_t* getAudioData() {
+ um_data_t *um_data;
+ if (!UsermodManager::getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
+ // add support for no audio
+ um_data = simulateSound(SEGMENT.soundSim);
+ }
+ return um_data;
+}
+
// effect functions
/*
@@ -1226,15 +1235,18 @@ uint16_t mode_fireworks() {
}
SEGMENT.fade_out(128);
- bool valid1 = (SEGENV.aux0 < width*height);
- bool valid2 = (SEGENV.aux1 < width*height);
uint8_t x = SEGENV.aux0%width, y = SEGENV.aux0/width; // 2D coordinates stored in upper and lower byte
- uint32_t sv1 = 0, sv2 = 0;
- if (valid1) sv1 = SEGMENT.is2D() ? SEGMENT.getPixelColorXY(x, y) : SEGMENT.getPixelColor(SEGENV.aux0); // get spark color
- if (valid2) sv2 = SEGMENT.is2D() ? SEGMENT.getPixelColorXY(x, y) : SEGMENT.getPixelColor(SEGENV.aux1);
- if (!SEGENV.step) SEGMENT.blur(16);
- if (valid1) { if (SEGMENT.is2D()) SEGMENT.setPixelColorXY(x, y, sv1); else SEGMENT.setPixelColor(SEGENV.aux0, sv1); } // restore spark color after blur
- if (valid2) { if (SEGMENT.is2D()) SEGMENT.setPixelColorXY(x, y, sv2); else SEGMENT.setPixelColor(SEGENV.aux1, sv2); } // restore old spark color after blur
+ if (!SEGENV.step) {
+ // fireworks mode (blur flares)
+ bool valid1 = (SEGENV.aux0 < width*height);
+ bool valid2 = (SEGENV.aux1 < width*height);
+ uint32_t sv1 = 0, sv2 = 0;
+ if (valid1) sv1 = SEGMENT.is2D() ? SEGMENT.getPixelColorXY(x, y) : SEGMENT.getPixelColor(SEGENV.aux0); // get spark color
+ if (valid2) sv2 = SEGMENT.is2D() ? SEGMENT.getPixelColorXY(x, y) : SEGMENT.getPixelColor(SEGENV.aux1);
+ SEGMENT.blur(16); // used in mode_rain()
+ if (valid1) { if (SEGMENT.is2D()) SEGMENT.setPixelColorXY(x, y, sv1); else SEGMENT.setPixelColor(SEGENV.aux0, sv1); } // restore spark color after blur
+ if (valid2) { if (SEGMENT.is2D()) SEGMENT.setPixelColorXY(x, y, sv2); else SEGMENT.setPixelColor(SEGENV.aux1, sv2); } // restore old spark color after blur
+ }
for (int i=0; i> 1)) == 0) {
@@ -1261,7 +1273,7 @@ uint16_t mode_rain() {
SEGENV.step += FRAMETIME;
if (SEGENV.call && SEGENV.step > SPEED_FORMULA_L) {
SEGENV.step = 1;
- if (strip.isMatrix) {
+ if (SEGMENT.is2D()) {
//uint32_t ctemp[width];
//for (int i = 0; i> 2;
- SEGMENT.blur(blurAmount);
+ if (blurAmount > 48) blurAmount += blurAmount-48; // extra blur when slider > 192 (bush burn)
+ if (blurAmount < 16) SEGMENT.blurCols(SEGMENT.custom2 >> 1); // no side-burn when slider < 64 (faster)
+ else SEGMENT.blur(blurAmount);
}
if (it != SEGENV.step)
@@ -3649,7 +3663,7 @@ uint16_t mode_exploding_fireworks(void)
else SEGMENT.setPixelColor(int(sparks[i].posX) ? rows - int(sparks[i].pos) - 1 : int(sparks[i].pos), c.red, c.green, c.blue);
}
}
- SEGMENT.blur(16);
+ if (SEGMENT.check3) SEGMENT.blur(16);
*dying_gravity *= .8f; // as sparks burn out they fall slower
} else {
SEGENV.aux0 = 6 + random8(10); //wait for this many frames
@@ -3664,7 +3678,7 @@ uint16_t mode_exploding_fireworks(void)
return FRAMETIME;
}
#undef MAX_SPARKS
-static const char _data_FX_MODE_EXPLODING_FIREWORKS[] PROGMEM = "Fireworks 1D@Gravity,Firing side;!,!;!;12;pal=11,ix=128";
+static const char _data_FX_MODE_EXPLODING_FIREWORKS[] PROGMEM = "Fireworks 1D@Gravity,Firing side,,,,,,Blur;!,!;!;12;pal=11,ix=128";
/*
@@ -4888,11 +4902,11 @@ uint16_t mode_2DBlackHole(void) { // By: Stepko https://editor.soulma
// central white dot
SEGMENT.setPixelColorXY(cols/2, rows/2, WHITE);
// blur everything a bit
- SEGMENT.blur(cols*rows > 100 ? 16 : 0);
+ if (SEGMENT.check3) SEGMENT.blur(16, cols*rows < 100);
return FRAMETIME;
} // mode_2DBlackHole()
-static const char _data_FX_MODE_2DBLACKHOLE[] PROGMEM = "Black Hole@Fade rate,Outer Y freq.,Outer X freq.,Inner X freq.,Inner Y freq.,Solid;!;!;2;pal=11";
+static const char _data_FX_MODE_2DBLACKHOLE[] PROGMEM = "Black Hole@Fade rate,Outer Y freq.,Outer X freq.,Inner X freq.,Inner Y freq.,Solid,,Blur;!;!;2;pal=11";
////////////////////////////
@@ -5634,7 +5648,7 @@ uint16_t mode_2DPulser(void) { // By: ldirko https://edi
int y = map((sin8(a * 5) + sin8(a * 4) + sin8(a * 2)), 0, 765, rows-1, 0);
SEGMENT.setPixelColorXY(x, y, ColorFromPalette(SEGPALETTE, map(y, 0, rows-1, 0, 255), 255, LINEARBLEND));
- SEGMENT.blur(1 + (SEGMENT.intensity>>4));
+ SEGMENT.blur(SEGMENT.intensity>>4);
return FRAMETIME;
} // mode_2DPulser()
@@ -6217,7 +6231,7 @@ uint16_t mode_2Ddriftrose(void) {
uint32_t y = (CY + (cos_t(angle) * (beatsin8(i, 0, L*2)-L))) * 255.f;
SEGMENT.wu_pixel(x, y, CHSV(i * 10, 255, 255));
}
- SEGMENT.blur((SEGMENT.intensity>>4)+1);
+ SEGMENT.blur(SEGMENT.intensity>>4);
return FRAMETIME;
}
@@ -6284,7 +6298,7 @@ static const char _data_FX_MODE_2DPLASMAROTOZOOM[] PROGMEM = "Rotozoomer@!,Scale
uint8_t *fftResult = nullptr;
float *fftBin = nullptr;
um_data_t *um_data;
- if (usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
+ if (UsermodManager::getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
volumeSmth = *(float*) um_data->u_data[0];
volumeRaw = *(float*) um_data->u_data[1];
fftResult = (uint8_t*) um_data->u_data[2];
@@ -6328,11 +6342,7 @@ uint16_t mode_ripplepeak(void) { // * Ripple peak. By Andrew Tuli
if (!SEGENV.allocateData(dataSize)) return mode_static(); //allocation failed
Ripple* ripples = reinterpret_cast(SEGENV.data);
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
uint8_t samplePeak = *(uint8_t*)um_data->u_data[3];
#ifdef ESP32
float FFT_MajorPeak = *(float*) um_data->u_data[4];
@@ -6419,11 +6429,7 @@ uint16_t mode_2DSwirl(void) {
int ni = (cols - 1) - i;
int nj = (cols - 1) - j;
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
float volumeSmth = *(float*) um_data->u_data[0]; //ewowi: use instead of sampleAvg???
int volumeRaw = *(int16_t*) um_data->u_data[1];
@@ -6449,11 +6455,7 @@ uint16_t mode_2DWaverly(void) {
const int cols = SEGMENT.virtualWidth();
const int rows = SEGMENT.virtualHeight();
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
float volumeSmth = *(float*) um_data->u_data[0];
SEGMENT.fadeToBlackBy(SEGMENT.speed);
@@ -6473,19 +6475,14 @@ uint16_t mode_2DWaverly(void) {
SEGMENT.addPixelColorXY((cols - 1) - i, (rows - 1) - j, ColorFromPalette(SEGPALETTE, map(j, 0, thisMax, 250, 0), 255, LINEARBLEND));
}
}
- SEGMENT.blur(cols*rows > 100 ? 16 : 0);
+ if (SEGMENT.check3) SEGMENT.blur(16, cols*rows < 100);
return FRAMETIME;
} // mode_2DWaverly()
-static const char _data_FX_MODE_2DWAVERLY[] PROGMEM = "Waverly@Amplification,Sensitivity;;!;2v;ix=64,si=0"; // Beatsin
+static const char _data_FX_MODE_2DWAVERLY[] PROGMEM = "Waverly@Amplification,Sensitivity,,,,,Blur;;!;2v;ix=64,si=0"; // Beatsin
#endif // WLED_DISABLE_2D
-// float version of map()
-static float mapf(float x, float in_min, float in_max, float out_min, float out_max){
- return (x - in_min) * (out_max - out_min) / (in_max - in_min) + out_min;
-}
-
// Gravity struct requited for GRAV* effects
typedef struct Gravity {
int topLED;
@@ -6502,11 +6499,7 @@ uint16_t mode_gravcenter(void) { // Gravcenter. By Andrew Tuline.
if (!SEGENV.allocateData(dataSize)) return mode_static(); //allocation failed
Gravity* gravcen = reinterpret_cast(SEGENV.data);
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
float volumeSmth = *(float*) um_data->u_data[0];
//SEGMENT.fade_out(240);
@@ -6551,11 +6544,7 @@ uint16_t mode_gravcentric(void) { // Gravcentric. By Andrew
if (!SEGENV.allocateData(dataSize)) return mode_static(); //allocation failed
Gravity* gravcen = reinterpret_cast(SEGENV.data);
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
float volumeSmth = *(float*) um_data->u_data[0];
// printUmData();
@@ -6603,11 +6592,7 @@ uint16_t mode_gravimeter(void) { // Gravmeter. By Andrew Tuline.
if (!SEGENV.allocateData(dataSize)) return mode_static(); //allocation failed
Gravity* gravcen = reinterpret_cast(SEGENV.data);
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
float volumeSmth = *(float*) um_data->u_data[0];
//SEGMENT.fade_out(240);
@@ -6644,11 +6629,7 @@ static const char _data_FX_MODE_GRAVIMETER[] PROGMEM = "Gravimeter@Rate of fall,
// * JUGGLES //
//////////////////////
uint16_t mode_juggles(void) { // Juggles. By Andrew Tuline.
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
float volumeSmth = *(float*) um_data->u_data[0];
SEGMENT.fade_out(224); // 6.25%
@@ -6671,11 +6652,7 @@ uint16_t mode_matripix(void) { // Matripix. By Andrew Tuline.
if (SEGLEN == 1) return mode_static();
// even with 1D effect we have to take logic for 2D segments for allocation as fill_solid() fills whole segment
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
int volumeRaw = *(int16_t*)um_data->u_data[1];
if (SEGENV.call == 0) {
@@ -6703,11 +6680,7 @@ uint16_t mode_midnoise(void) { // Midnoise. By Andrew Tuline.
if (SEGLEN == 1) return mode_static();
// Changing xdist to SEGENV.aux0 and ydist to SEGENV.aux1.
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
float volumeSmth = *(float*) um_data->u_data[0];
SEGMENT.fade_out(SEGMENT.speed);
@@ -6742,11 +6715,7 @@ uint16_t mode_noisefire(void) { // Noisefire. By Andrew Tuline.
CRGB::DarkOrange, CRGB::DarkOrange, CRGB::Orange, CRGB::Orange,
CRGB::Yellow, CRGB::Orange, CRGB::Yellow, CRGB::Yellow);
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
float volumeSmth = *(float*) um_data->u_data[0];
if (SEGENV.call == 0) SEGMENT.fill(BLACK);
@@ -6770,11 +6739,7 @@ static const char _data_FX_MODE_NOISEFIRE[] PROGMEM = "Noisefire@!,!;;;01v;m12=2
///////////////////////
uint16_t mode_noisemeter(void) { // Noisemeter. By Andrew Tuline.
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
float volumeSmth = *(float*) um_data->u_data[0];
int volumeRaw = *(int16_t*)um_data->u_data[1];
@@ -6811,11 +6776,7 @@ uint16_t mode_pixelwave(void) { // Pixelwave. By Andrew Tuline.
SEGMENT.fill(BLACK);
}
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
int volumeRaw = *(int16_t*)um_data->u_data[1];
uint8_t secondHand = micros()/(256-SEGMENT.speed)/500+1 % 16;
@@ -6847,11 +6808,7 @@ uint16_t mode_plasmoid(void) { // Plasmoid. By Andrew Tuline.
if (!SEGENV.allocateData(sizeof(plasphase))) return mode_static(); //allocation failed
Plasphase* plasmoip = reinterpret_cast(SEGENV.data);
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
float volumeSmth = *(float*) um_data->u_data[0];
SEGMENT.fadeToBlackBy(32);
@@ -6886,11 +6843,7 @@ uint16_t mode_puddlepeak(void) { // Puddlepeak. By Andrew Tuline.
uint8_t fadeVal = map(SEGMENT.speed,0,255, 224, 254);
unsigned pos = random16(SEGLEN); // Set a random starting position.
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
uint8_t samplePeak = *(uint8_t*)um_data->u_data[3];
uint8_t *maxVol = (uint8_t*)um_data->u_data[6];
uint8_t *binNum = (uint8_t*)um_data->u_data[7];
@@ -6931,11 +6884,7 @@ uint16_t mode_puddles(void) { // Puddles. By Andrew Tuline.
SEGMENT.fade_out(fadeVal);
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
int volumeRaw = *(int16_t*)um_data->u_data[1];
if (volumeRaw > 1) {
@@ -6962,7 +6911,7 @@ uint16_t mode_pixels(void) { // Pixels. By Andrew Tuline.
uint8_t *myVals = reinterpret_cast(SEGENV.data); // Used to store a pile of samples because WLED frame rate and WLED sample rate are not synchronized. Frame rate is too low.
um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
+ if (!UsermodManager::getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
um_data = simulateSound(SEGMENT.soundSim);
}
float volumeSmth = *(float*) um_data->u_data[0];
@@ -6993,11 +6942,7 @@ uint16_t mode_blurz(void) { // Blurz. By Andrew Tuline.
if (SEGLEN == 1) return mode_static();
// even with 1D effect we have to take logic for 2D segments for allocation as fill_solid() fills whole segment
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
uint8_t *fftResult = (uint8_t*)um_data->u_data[2];
if (SEGENV.call == 0) {
@@ -7030,11 +6975,7 @@ uint16_t mode_DJLight(void) { // Written by ??? Adapted by Wil
// No need to prevent from executing on single led strips, only mid will be set (mid = 0)
const int mid = SEGLEN / 2;
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
uint8_t *fftResult = (uint8_t*)um_data->u_data[2];
if (SEGENV.call == 0) {
@@ -7066,11 +7007,7 @@ uint16_t mode_freqmap(void) { // Map FFT_MajorPeak to SEGLEN.
// Start frequency = 60 Hz and log10(60) = 1.78
// End frequency = MAX_FREQUENCY in Hz and lo10(MAX_FREQUENCY) = MAX_FREQ_LOG10
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
float FFT_MajorPeak = *(float*)um_data->u_data[4];
float my_magnitude = *(float*)um_data->u_data[5] / 4.0f;
if (FFT_MajorPeak < 1) FFT_MajorPeak = 1; // log10(0) is "forbidden" (throws exception)
@@ -7100,11 +7037,7 @@ static const char _data_FX_MODE_FREQMAP[] PROGMEM = "Freqmap@Fade rate,Starting
///////////////////////
uint16_t mode_freqmatrix(void) { // Freqmatrix. By Andreas Pleschung.
// No need to prevent from executing on single led strips, we simply change pixel 0 each time and avoid the shift
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
float FFT_MajorPeak = *(float*)um_data->u_data[4];
float volumeSmth = *(float*)um_data->u_data[0];
@@ -7159,11 +7092,7 @@ static const char _data_FX_MODE_FREQMATRIX[] PROGMEM = "Freqmatrix@Speed,Sound e
// SEGMENT.speed select faderate
// SEGMENT.intensity select colour index
uint16_t mode_freqpixels(void) { // Freqpixel. By Andrew Tuline.
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
float FFT_MajorPeak = *(float*)um_data->u_data[4];
float my_magnitude = *(float*)um_data->u_data[5] / 16.0f;
if (FFT_MajorPeak < 1) FFT_MajorPeak = 1.0f; // log10(0) is "forbidden" (throws exception)
@@ -7206,11 +7135,7 @@ static const char _data_FX_MODE_FREQPIXELS[] PROGMEM = "Freqpixels@Fade rate,Sta
// Depending on the music stream you have you might find it useful to change the frequency mapping.
uint16_t mode_freqwave(void) { // Freqwave. By Andreas Pleschung.
// As before, this effect can also work on single pixels, we just lose the shifting effect
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
float FFT_MajorPeak = *(float*)um_data->u_data[4];
float volumeSmth = *(float*)um_data->u_data[0];
@@ -7265,11 +7190,7 @@ uint16_t mode_gravfreq(void) { // Gravfreq. By Andrew Tuline.
if (!SEGENV.allocateData(dataSize)) return mode_static(); //allocation failed
Gravity* gravcen = reinterpret_cast(SEGENV.data);
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
float FFT_MajorPeak = *(float*)um_data->u_data[4];
float volumeSmth = *(float*)um_data->u_data[0];
if (FFT_MajorPeak < 1) FFT_MajorPeak = 1; // log10(0) is "forbidden" (throws exception)
@@ -7312,11 +7233,7 @@ static const char _data_FX_MODE_GRAVFREQ[] PROGMEM = "Gravfreq@Rate of fall,Sens
// ** Noisemove //
//////////////////////
uint16_t mode_noisemove(void) { // Noisemove. By: Andrew Tuline
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
uint8_t *fftResult = (uint8_t*)um_data->u_data[2];
int fadeoutDelay = (256 - SEGMENT.speed) / 96;
@@ -7339,11 +7256,7 @@ static const char _data_FX_MODE_NOISEMOVE[] PROGMEM = "Noisemove@Speed of perlin
// ** Rocktaves //
//////////////////////
uint16_t mode_rocktaves(void) { // Rocktaves. Same note from each octave is same colour. By: Andrew Tuline
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
float FFT_MajorPeak = *(float*) um_data->u_data[4];
float my_magnitude = *(float*) um_data->u_data[5] / 16.0f;
@@ -7381,11 +7294,7 @@ static const char _data_FX_MODE_ROCKTAVES[] PROGMEM = "Rocktaves@;!,!;!;01f;m12=
uint16_t mode_waterfall(void) { // Waterfall. By: Andrew Tuline
// effect can work on single pixels, we just lose the shifting effect
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
uint8_t samplePeak = *(uint8_t*)um_data->u_data[3];
float FFT_MajorPeak = *(float*) um_data->u_data[4];
uint8_t *maxVol = (uint8_t*)um_data->u_data[6];
@@ -7440,11 +7349,7 @@ uint16_t mode_2DGEQ(void) { // By Will Tatam. Code reduction by Ewoud Wijma.
if (!SEGENV.allocateData(cols*sizeof(uint16_t))) return mode_static(); //allocation failed
uint16_t *previousBarHeight = reinterpret_cast(SEGENV.data); //array of previous bar heights per frequency band
- um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
- // add support for no audio
- um_data = simulateSound(SEGMENT.soundSim);
- }
+ um_data_t *um_data = getAudioData();
uint8_t *fftResult = (uint8_t*)um_data->u_data[2];
if (SEGENV.call == 0) for (int i=0; iu_data[2];
if (SEGENV.call == 0) {
@@ -7593,7 +7494,7 @@ uint16_t mode_2DAkemi(void) {
const float normalFactor = 0.4f;
um_data_t *um_data;
- if (!usermods.getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
+ if (!UsermodManager::getUMData(&um_data, USERMOD_ID_AUDIOREACTIVE)) {
um_data = simulateSound(SEGMENT.soundSim);
}
uint8_t *fftResult = (uint8_t*)um_data->u_data[2];
@@ -7899,18 +7800,23 @@ static const char _data_RESERVED[] PROGMEM = "RSVD";
// add (or replace reserved) effect mode and data into vector
// use id==255 to find unallocated gaps (with "Reserved" data string)
// if vector size() is smaller than id (single) data is appended at the end (regardless of id)
-void WS2812FX::addEffect(uint8_t id, mode_ptr mode_fn, const char *mode_name) {
+// return the actual id used for the effect or 255 if the add failed.
+uint8_t WS2812FX::addEffect(uint8_t id, mode_ptr mode_fn, const char *mode_name) {
if (id == 255) { // find empty slot
for (size_t i=1; i<_mode.size(); i++) if (_modeData[i] == _data_RESERVED) { id = i; break; }
}
if (id < _mode.size()) {
- if (_modeData[id] != _data_RESERVED) return; // do not overwrite alerady added effect
+ if (_modeData[id] != _data_RESERVED) return 255; // do not overwrite an already added effect
_mode[id] = mode_fn;
_modeData[id] = mode_name;
- } else {
+ return id;
+ } else if(_mode.size() < 255) { // 255 is reserved for indicating the effect wasn't added
_mode.push_back(mode_fn);
_modeData.push_back(mode_name);
if (_modeCount < _mode.size()) _modeCount++;
+ return _mode.size() - 1;
+ } else {
+ return 255; // The vector is full so return 255
}
}
diff --git a/wled00/FX.h b/wled00/FX.h
index 71acf4fa4..2302699f0 100644
--- a/wled00/FX.h
+++ b/wled00/FX.h
@@ -536,26 +536,26 @@ typedef struct Segment {
#endif
inline bool getOption(uint8_t n) const { return ((options >> n) & 0x01); }
- inline bool isSelected(void) const { return selected; }
- inline bool isInTransition(void) const { return _t != nullptr; }
- inline bool isActive(void) const { return stop > start; }
- inline bool is2D(void) const { return (width()>1 && height()>1); }
- inline bool hasRGB(void) const { return _isRGB; }
- inline bool hasWhite(void) const { return _hasW; }
- inline bool isCCT(void) const { return _isCCT; }
- inline uint16_t width(void) const { return isActive() ? (stop - start) : 0; } // segment width in physical pixels (length if 1D)
- inline uint16_t height(void) const { return stopY - startY; } // segment height (if 2D) in physical pixels (it *is* always >=1)
- inline uint16_t length(void) const { return width() * height(); } // segment length (count) in physical pixels
- inline uint16_t groupLength(void) const { return grouping + spacing; }
- inline uint8_t getLightCapabilities(void) const { return _capabilities; }
+ inline bool isSelected() const { return selected; }
+ inline bool isInTransition() const { return _t != nullptr; }
+ inline bool isActive() const { return stop > start; }
+ inline bool is2D() const { return (width()>1 && height()>1); }
+ inline bool hasRGB() const { return _isRGB; }
+ inline bool hasWhite() const { return _hasW; }
+ inline bool isCCT() const { return _isCCT; }
+ inline uint16_t width() const { return isActive() ? (stop - start) : 0; } // segment width in physical pixels (length if 1D)
+ inline uint16_t height() const { return stopY - startY; } // segment height (if 2D) in physical pixels (it *is* always >=1)
+ inline uint16_t length() const { return width() * height(); } // segment length (count) in physical pixels
+ inline uint16_t groupLength() const { return grouping + spacing; }
+ inline uint8_t getLightCapabilities() const { return _capabilities; }
- static uint16_t getUsedSegmentData(void) { return _usedSegmentData; }
- static void addUsedSegmentData(int len) { _usedSegmentData += len; }
+ inline static uint16_t getUsedSegmentData() { return _usedSegmentData; }
+ inline static void addUsedSegmentData(int len) { _usedSegmentData += len; }
#ifndef WLED_DISABLE_MODE_BLEND
- static void modeBlend(bool blend) { _modeBlend = blend; }
+ inline static void modeBlend(bool blend) { _modeBlend = blend; }
#endif
static void handleRandomPalette();
- inline static const CRGBPalette16 &getCurrentPalette(void) { return Segment::_currentPalette; }
+ inline static const CRGBPalette16 &getCurrentPalette() { return Segment::_currentPalette; }
void setUp(uint16_t i1, uint16_t i2, uint8_t grp=1, uint8_t spc=0, uint16_t ofs=UINT16_MAX, uint16_t i1Y=0, uint16_t i2Y=1);
bool setColor(uint8_t slot, uint32_t c); //returns true if changed
@@ -565,39 +565,39 @@ typedef struct Segment {
void setMode(uint8_t fx, bool loadDefaults = false);
void setPalette(uint8_t pal);
uint8_t differs(Segment& b) const;
- void refreshLightCapabilities(void);
+ void refreshLightCapabilities();
// runtime data functions
- inline uint16_t dataSize(void) const { return _dataLen; }
+ inline uint16_t dataSize() const { return _dataLen; }
bool allocateData(size_t len); // allocates effect data buffer in heap and clears it
- void deallocateData(void); // deallocates (frees) effect data buffer from heap
- void resetIfRequired(void); // sets all SEGENV variables to 0 and clears data buffer
+ void deallocateData(); // deallocates (frees) effect data buffer from heap
+ void resetIfRequired(); // sets all SEGENV variables to 0 and clears data buffer
/**
* Flags that before the next effect is calculated,
* the internal segment state should be reset.
* Call resetIfRequired before calling the next effect function.
* Safe to call from interrupts and network requests.
*/
- inline void markForReset(void) { reset = true; } // setOption(SEG_OPTION_RESET, true)
+ inline void markForReset() { reset = true; } // setOption(SEG_OPTION_RESET, true)
// transition functions
void startTransition(uint16_t dur); // transition has to start before actual segment values change
- void stopTransition(void); // ends transition mode by destroying transition structure
- void handleTransition(void);
+ void stopTransition(); // ends transition mode by destroying transition structure (does nothing if not in transition)
+ inline void handleTransition() { if (progress() == 0xFFFFU) stopTransition(); }
#ifndef WLED_DISABLE_MODE_BLEND
void swapSegenv(tmpsegd_t &tmpSegD); // copies segment data into specifed buffer, if buffer is not a transition buffer, segment data is overwritten from transition buffer
void restoreSegenv(tmpsegd_t &tmpSegD); // restores segment data from buffer, if buffer is not transition buffer, changed values are copied to transition buffer
#endif
- uint16_t progress(void); // transition progression between 0-65535
- uint8_t currentBri(bool useCct = false); // current segment brightness/CCT (blended while in transition)
- uint8_t currentMode(void); // currently active effect/mode (while in transition)
- uint32_t currentColor(uint8_t slot); // currently active segment color (blended while in transition)
+ [[gnu::hot]] uint16_t progress() const; // transition progression between 0-65535
+ [[gnu::hot]] uint8_t currentBri(bool useCct = false) const; // current segment brightness/CCT (blended while in transition)
+ uint8_t currentMode() const; // currently active effect/mode (while in transition)
+ [[gnu::hot]] uint32_t currentColor(uint8_t slot) const; // currently active segment color (blended while in transition)
CRGBPalette16 &loadPalette(CRGBPalette16 &tgt, uint8_t pal);
- void setCurrentPalette(void);
+ void setCurrentPalette();
// 1D strip
- uint16_t virtualLength(void) const;
- void setPixelColor(int n, uint32_t c); // set relative pixel within segment with color
+ [[gnu::hot]] uint16_t virtualLength() const;
+ [[gnu::hot]] void setPixelColor(int n, uint32_t c); // set relative pixel within segment with color
inline void setPixelColor(unsigned n, uint32_t c) { setPixelColor(int(n), c); }
inline void setPixelColor(int n, byte r, byte g, byte b, byte w = 0) { setPixelColor(n, RGBW32(r,g,b,w)); }
inline void setPixelColor(int n, CRGB c) { setPixelColor(n, RGBW32(c.r,c.g,c.b,0)); }
@@ -606,7 +606,7 @@ typedef struct Segment {
inline void setPixelColor(float i, uint8_t r, uint8_t g, uint8_t b, uint8_t w = 0, bool aa = true) { setPixelColor(i, RGBW32(r,g,b,w), aa); }
inline void setPixelColor(float i, CRGB c, bool aa = true) { setPixelColor(i, RGBW32(c.r,c.g,c.b,0), aa); }
#endif
- uint32_t getPixelColor(int i);
+ [[gnu::hot]] uint32_t getPixelColor(int i) const;
// 1D support functions (some implement 2D as well)
void blur(uint8_t, bool smear = false);
void fill(uint32_t c);
@@ -618,16 +618,26 @@ typedef struct Segment {
inline void addPixelColor(int n, byte r, byte g, byte b, byte w = 0, bool fast = false) { addPixelColor(n, RGBW32(r,g,b,w), fast); }
inline void addPixelColor(int n, CRGB c, bool fast = false) { addPixelColor(n, RGBW32(c.r,c.g,c.b,0), fast); }
inline void fadePixelColor(uint16_t n, uint8_t fade) { setPixelColor(n, color_fade(getPixelColor(n), fade, true)); }
- uint32_t color_from_palette(uint16_t, bool mapping, bool wrap, uint8_t mcol, uint8_t pbri = 255);
- uint32_t color_wheel(uint8_t pos);
+ [[gnu::hot]] uint32_t color_from_palette(uint16_t, bool mapping, bool wrap, uint8_t mcol, uint8_t pbri = 255) const;
+ [[gnu::hot]] uint32_t color_wheel(uint8_t pos) const;
+
+ // 2D Blur: shortcuts for bluring columns or rows only (50% faster than full 2D blur)
+ inline void blurCols(fract8 blur_amount, bool smear = false) { // blur all columns
+ const unsigned cols = virtualWidth();
+ for (unsigned k = 0; k < cols; k++) blurCol(k, blur_amount, smear);
+ }
+ inline void blurRows(fract8 blur_amount, bool smear = false) { // blur all rows
+ const unsigned rows = virtualHeight();
+ for ( unsigned i = 0; i < rows; i++) blurRow(i, blur_amount, smear);
+ }
// 2D matrix
- uint16_t virtualWidth(void) const; // segment width in virtual pixels (accounts for groupping and spacing)
- uint16_t virtualHeight(void) const; // segment height in virtual pixels (accounts for groupping and spacing)
- uint16_t nrOfVStrips(void) const; // returns number of virtual vertical strips in 2D matrix (used to expand 1D effects into 2D)
+ [[gnu::hot]] uint16_t virtualWidth() const; // segment width in virtual pixels (accounts for groupping and spacing)
+ [[gnu::hot]] uint16_t virtualHeight() const; // segment height in virtual pixels (accounts for groupping and spacing)
+ uint16_t nrOfVStrips() const; // returns number of virtual vertical strips in 2D matrix (used to expand 1D effects into 2D)
#ifndef WLED_DISABLE_2D
- uint16_t XY(uint16_t x, uint16_t y); // support function to get relative index within segment
- void setPixelColorXY(int x, int y, uint32_t c); // set relative pixel within segment with color
+ [[gnu::hot]] uint16_t XY(int x, int y); // support function to get relative index within segment
+ [[gnu::hot]] void setPixelColorXY(int x, int y, uint32_t c); // set relative pixel within segment with color
inline void setPixelColorXY(unsigned x, unsigned y, uint32_t c) { setPixelColorXY(int(x), int(y), c); }
inline void setPixelColorXY(int x, int y, byte r, byte g, byte b, byte w = 0) { setPixelColorXY(x, y, RGBW32(r,g,b,w)); }
inline void setPixelColorXY(int x, int y, CRGB c) { setPixelColorXY(x, y, RGBW32(c.r,c.g,c.b,0)); }
@@ -637,7 +647,7 @@ typedef struct Segment {
inline void setPixelColorXY(float x, float y, byte r, byte g, byte b, byte w = 0, bool aa = true) { setPixelColorXY(x, y, RGBW32(r,g,b,w), aa); }
inline void setPixelColorXY(float x, float y, CRGB c, bool aa = true) { setPixelColorXY(x, y, RGBW32(c.r,c.g,c.b,0), aa); }
#endif
- uint32_t getPixelColorXY(int x, int y);
+ [[gnu::hot]] uint32_t getPixelColorXY(int x, int y) const;
// 2D support functions
inline void blendPixelColorXY(uint16_t x, uint16_t y, uint32_t color, uint8_t blend) { setPixelColorXY(x, y, color_blend(getPixelColorXY(x,y), color, blend)); }
inline void blendPixelColorXY(uint16_t x, uint16_t y, CRGB c, uint8_t blend) { blendPixelColorXY(x, y, RGBW32(c.r,c.g,c.b,0), blend); }
@@ -645,7 +655,8 @@ typedef struct Segment {
inline void addPixelColorXY(int x, int y, byte r, byte g, byte b, byte w = 0, bool fast = false) { addPixelColorXY(x, y, RGBW32(r,g,b,w), fast); }
inline void addPixelColorXY(int x, int y, CRGB c, bool fast = false) { addPixelColorXY(x, y, RGBW32(c.r,c.g,c.b,0), fast); }
inline void fadePixelColorXY(uint16_t x, uint16_t y, uint8_t fade) { setPixelColorXY(x, y, color_fade(getPixelColorXY(x,y), fade, true)); }
- void box_blur(uint16_t i, bool vertical, fract8 blur_amount); // 1D box blur (with weight)
+ void box_blur(unsigned r = 1U, bool smear = false); // 2D box blur
+ void blur2D(uint8_t blur_amount, bool smear = false);
void blurRow(uint32_t row, fract8 blur_amount, bool smear = false);
void blurCol(uint32_t col, fract8 blur_amount, bool smear = false);
void moveX(int8_t delta, bool wrap = false);
@@ -675,14 +686,15 @@ typedef struct Segment {
inline void setPixelColorXY(float x, float y, byte r, byte g, byte b, byte w = 0, bool aa = true) { setPixelColor(x, RGBW32(r,g,b,w), aa); }
inline void setPixelColorXY(float x, float y, CRGB c, bool aa = true) { setPixelColor(x, RGBW32(c.r,c.g,c.b,0), aa); }
#endif
- inline uint32_t getPixelColorXY(uint16_t x, uint16_t y) { return getPixelColor(x); }
+ inline uint32_t getPixelColorXY(int x, int y) { return getPixelColor(x); }
inline void blendPixelColorXY(uint16_t x, uint16_t y, uint32_t c, uint8_t blend) { blendPixelColor(x, c, blend); }
inline void blendPixelColorXY(uint16_t x, uint16_t y, CRGB c, uint8_t blend) { blendPixelColor(x, RGBW32(c.r,c.g,c.b,0), blend); }
inline void addPixelColorXY(int x, int y, uint32_t color, bool fast = false) { addPixelColor(x, color, fast); }
inline void addPixelColorXY(int x, int y, byte r, byte g, byte b, byte w = 0, bool fast = false) { addPixelColor(x, RGBW32(r,g,b,w), fast); }
inline void addPixelColorXY(int x, int y, CRGB c, bool fast = false) { addPixelColor(x, RGBW32(c.r,c.g,c.b,0), fast); }
inline void fadePixelColorXY(uint16_t x, uint16_t y, uint8_t fade) { fadePixelColor(x, fade); }
- inline void box_blur(uint16_t i, bool vertical, fract8 blur_amount) {}
+ inline void box_blur(unsigned i, bool vertical, fract8 blur_amount) {}
+ inline void blur2D(uint8_t blur_amount, bool smear = false) {}
inline void blurRow(uint32_t row, fract8 blur_amount, bool smear = false) {}
inline void blurCol(uint32_t col, fract8 blur_amount, bool smear = false) {}
inline void moveX(int8_t delta, bool wrap = false) {}
@@ -704,8 +716,8 @@ typedef struct Segment {
// main "strip" class
class WS2812FX { // 96 bytes
- typedef uint16_t (*mode_ptr)(void); // pointer to mode function
- typedef void (*show_callback)(void); // pre show callback
+ typedef uint16_t (*mode_ptr)(); // pointer to mode function
+ typedef void (*show_callback)(); // pre show callback
typedef struct ModeData {
uint8_t _id; // mode (effect) id
mode_ptr _fcn; // mode (effect) function
@@ -727,6 +739,9 @@ class WS2812FX { // 96 bytes
#ifndef WLED_DISABLE_2D
panels(1),
#endif
+ autoSegments(false),
+ correctWB(false),
+ cctFromRgb(false),
// semi-private (just obscured) used in effect functions through macros
_colors_t{0,0,0},
_virtualSegmentLength(0),
@@ -748,15 +763,7 @@ class WS2812FX { // 96 bytes
customMappingSize(0),
_lastShow(0),
_segment_index(0),
- _mainSegment(0),
- _queuedChangesSegId(255),
- _qStart(0),
- _qStop(0),
- _qStartY(0),
- _qStopY(0),
- _qGrouping(0),
- _qSpacing(0),
- _qOffset(0)
+ _mainSegment(0)
{
WS2812FX::instance = this;
_mode.reserve(_modeCount); // allocate memory to prevent initial fragmentation (does not increase size())
@@ -776,30 +783,29 @@ class WS2812FX { // 96 bytes
customPalettes.clear();
}
- static WS2812FX* getInstance(void) { return instance; }
+ static WS2812FX* getInstance() { return instance; }
void
#ifdef WLED_DEBUG_FX
printSize(), // prints memory usage for strip components
#endif
finalizeInit(), // initialises strip components
- service(void), // executes effect functions when due and calls strip.show()
+ service(), // executes effect functions when due and calls strip.show()
setMode(uint8_t segid, uint8_t m), // sets effect/mode for given segment (high level API)
setColor(uint8_t slot, uint32_t c), // sets color (in slot) for given segment (high level API)
setCCT(uint16_t k), // sets global CCT (either in relative 0-255 value or in K)
setBrightness(uint8_t b, bool direct = false), // sets strip brightness
setRange(uint16_t i, uint16_t i2, uint32_t col), // used for clock overlay
- purgeSegments(void), // removes inactive segments from RAM (may incure penalty and memory fragmentation but reduces vector footprint)
+ purgeSegments(), // removes inactive segments from RAM (may incure penalty and memory fragmentation but reduces vector footprint)
setSegment(uint8_t n, uint16_t start, uint16_t stop, uint8_t grouping = 1, uint8_t spacing = 0, uint16_t offset = UINT16_MAX, uint16_t startY=0, uint16_t stopY=1),
setMainSegmentId(uint8_t n),
resetSegments(), // marks all segments for reset
makeAutoSegments(bool forceReset = false), // will create segments based on configured outputs
fixInvalidSegments(), // fixes incorrect segment configuration
setPixelColor(unsigned n, uint32_t c), // paints absolute strip pixel with index n and color c
- show(void), // initiates LED output
+ show(), // initiates LED output
setTargetFps(uint8_t fps),
- addEffect(uint8_t id, mode_ptr mode_fn, const char *mode_name), // add effect to the list; defined in FX.cpp
- setupEffectData(void); // add default effects to the list; defined in FX.cpp
+ setupEffectData(); // add default effects to the list; defined in FX.cpp
inline void restartRuntime() { for (Segment &seg : _segments) seg.markForReset(); }
inline void setTransitionMode(bool t) { for (Segment &seg : _segments) seg.startTransition(t ? _transitionDur : 0); }
@@ -807,74 +813,74 @@ class WS2812FX { // 96 bytes
inline void setPixelColor(unsigned n, uint8_t r, uint8_t g, uint8_t b, uint8_t w = 0) { setPixelColor(n, RGBW32(r,g,b,w)); }
inline void setPixelColor(unsigned n, CRGB c) { setPixelColor(n, c.red, c.green, c.blue); }
inline void fill(uint32_t c) { for (unsigned i = 0; i < getLengthTotal(); i++) setPixelColor(i, c); } // fill whole strip with color (inline)
- inline void trigger(void) { _triggered = true; } // Forces the next frame to be computed on all active segments.
+ inline void trigger() { _triggered = true; } // Forces the next frame to be computed on all active segments.
inline void setShowCallback(show_callback cb) { _callback = cb; }
inline void setTransition(uint16_t t) { _transitionDur = t; } // sets transition time (in ms)
inline void appendSegment(const Segment &seg = Segment()) { if (_segments.size() < getMaxSegments()) _segments.push_back(seg); }
- inline void suspend(void) { _suspend = true; } // will suspend (and canacel) strip.service() execution
- inline void resume(void) { _suspend = false; } // will resume strip.service() execution
+ inline void suspend() { _suspend = true; } // will suspend (and canacel) strip.service() execution
+ inline void resume() { _suspend = false; } // will resume strip.service() execution
bool
paletteFade,
- checkSegmentAlignment(void),
- hasRGBWBus(void),
- hasCCTBus(void),
- // return true if the strip is being sent pixel updates
- isUpdating(void),
+ checkSegmentAlignment(),
+ hasRGBWBus() const,
+ hasCCTBus() const,
+ isUpdating() const, // return true if the strip is being sent pixel updates
deserializeMap(uint8_t n=0);
- inline bool isServicing(void) { return _isServicing; } // returns true if strip.service() is executing
- inline bool hasWhiteChannel(void) { return _hasWhiteChannel; } // returns true if strip contains separate white chanel
- inline bool isOffRefreshRequired(void) { return _isOffRefreshRequired; } // returns true if strip requires regular updates (i.e. TM1814 chipset)
- inline bool isSuspended(void) { return _suspend; } // returns true if strip.service() execution is suspended
- inline bool needsUpdate(void) { return _triggered; } // returns true if strip received a trigger() request
+ inline bool isServicing() const { return _isServicing; } // returns true if strip.service() is executing
+ inline bool hasWhiteChannel() const { return _hasWhiteChannel; } // returns true if strip contains separate white chanel
+ inline bool isOffRefreshRequired() const { return _isOffRefreshRequired; } // returns true if strip requires regular updates (i.e. TM1814 chipset)
+ inline bool isSuspended() const { return _suspend; } // returns true if strip.service() execution is suspended
+ inline bool needsUpdate() const { return _triggered; } // returns true if strip received a trigger() request
uint8_t
paletteBlend,
cctBlending,
- getActiveSegmentsNum(void),
- getFirstSelectedSegId(void),
- getLastActiveSegmentId(void),
- getActiveSegsLightCapabilities(bool selectedOnly = false);
+ getActiveSegmentsNum() const,
+ getFirstSelectedSegId() const,
+ getLastActiveSegmentId() const,
+ getActiveSegsLightCapabilities(bool selectedOnly = false) const,
+ addEffect(uint8_t id, mode_ptr mode_fn, const char *mode_name); // add effect to the list; defined in FX.cpp;
- inline uint8_t getBrightness(void) { return _brightness; } // returns current strip brightness
- inline uint8_t getMaxSegments(void) { return MAX_NUM_SEGMENTS; } // returns maximum number of supported segments (fixed value)
- inline uint8_t getSegmentsNum(void) { return _segments.size(); } // returns currently present segments
- inline uint8_t getCurrSegmentId(void) { return _segment_index; } // returns current segment index (only valid while strip.isServicing())
- inline uint8_t getMainSegmentId(void) { return _mainSegment; } // returns main segment index
- inline uint8_t getPaletteCount() { return 13 + GRADIENT_PALETTE_COUNT + customPalettes.size(); }
- inline uint8_t getTargetFps() { return _targetFps; } // returns rough FPS value for las 2s interval
- inline uint8_t getModeCount() { return _modeCount; } // returns number of registered modes/effects
+ inline uint8_t getBrightness() const { return _brightness; } // returns current strip brightness
+ inline uint8_t getMaxSegments() const { return MAX_NUM_SEGMENTS; } // returns maximum number of supported segments (fixed value)
+ inline uint8_t getSegmentsNum() const { return _segments.size(); } // returns currently present segments
+ inline uint8_t getCurrSegmentId() const { return _segment_index; } // returns current segment index (only valid while strip.isServicing())
+ inline uint8_t getMainSegmentId() const { return _mainSegment; } // returns main segment index
+ inline uint8_t getPaletteCount() const { return 13 + GRADIENT_PALETTE_COUNT + customPalettes.size(); }
+ inline uint8_t getTargetFps() const { return _targetFps; } // returns rough FPS value for las 2s interval
+ inline uint8_t getModeCount() const { return _modeCount; } // returns number of registered modes/effects
uint16_t
- getLengthPhysical(void),
- getLengthTotal(void), // will include virtual/nonexistent pixels in matrix
- getFps(),
- getMappedPixelIndex(uint16_t index);
+ getLengthPhysical() const,
+ getLengthTotal() const, // will include virtual/nonexistent pixels in matrix
+ getFps() const,
+ getMappedPixelIndex(uint16_t index) const;
- inline uint16_t getFrameTime(void) { return _frametime; } // returns amount of time a frame should take (in ms)
- inline uint16_t getMinShowDelay(void) { return MIN_SHOW_DELAY; } // returns minimum amount of time strip.service() can be delayed (constant)
- inline uint16_t getLength(void) { return _length; } // returns actual amount of LEDs on a strip (2D matrix may have less LEDs than W*H)
- inline uint16_t getTransition(void) { return _transitionDur; } // returns currently set transition time (in ms)
+ inline uint16_t getFrameTime() const { return _frametime; } // returns amount of time a frame should take (in ms)
+ inline uint16_t getMinShowDelay() const { return MIN_SHOW_DELAY; } // returns minimum amount of time strip.service() can be delayed (constant)
+ inline uint16_t getLength() const { return _length; } // returns actual amount of LEDs on a strip (2D matrix may have less LEDs than W*H)
+ inline uint16_t getTransition() const { return _transitionDur; } // returns currently set transition time (in ms)
uint32_t
now,
timebase,
- getPixelColor(uint16_t);
+ getPixelColor(uint16_t) const;
- inline uint32_t getLastShow(void) { return _lastShow; } // returns millis() timestamp of last strip.show() call
- inline uint32_t segColor(uint8_t i) { return _colors_t[i]; } // returns currently valid color (for slot i) AKA SEGCOLOR(); may be blended between two colors while in transition
+ inline uint32_t getLastShow() const { return _lastShow; } // returns millis() timestamp of last strip.show() call
+ inline uint32_t segColor(uint8_t i) const { return _colors_t[i]; } // returns currently valid color (for slot i) AKA SEGCOLOR(); may be blended between two colors while in transition
const char *
- getModeData(uint8_t id = 0) { return (id && id<_modeCount) ? _modeData[id] : PSTR("Solid"); }
+ getModeData(uint8_t id = 0) const { return (id && id<_modeCount) ? _modeData[id] : PSTR("Solid"); }
const char **
- getModeDataSrc(void) { return &(_modeData[0]); } // vectors use arrays for underlying data
+ getModeDataSrc() { return &(_modeData[0]); } // vectors use arrays for underlying data
Segment& getSegment(uint8_t id);
- inline Segment& getFirstSelectedSeg(void) { return _segments[getFirstSelectedSegId()]; } // returns reference to first segment that is "selected"
- inline Segment& getMainSegment(void) { return _segments[getMainSegmentId()]; } // returns reference to main segment
- inline Segment* getSegments(void) { return &(_segments[0]); } // returns pointer to segment vector structure (warning: use carefully)
+ inline Segment& getFirstSelectedSeg() { return _segments[getFirstSelectedSegId()]; } // returns reference to first segment that is "selected"
+ inline Segment& getMainSegment() { return _segments[getMainSegmentId()]; } // returns reference to main segment
+ inline Segment* getSegments() { return &(_segments[0]); } // returns pointer to segment vector structure (warning: use carefully)
// 2D support (panels)
bool
@@ -917,13 +923,19 @@ class WS2812FX { // 96 bytes
inline void setPixelColorXY(int x, int y, byte r, byte g, byte b, byte w = 0) { setPixelColorXY(x, y, RGBW32(r,g,b,w)); }
inline void setPixelColorXY(int x, int y, CRGB c) { setPixelColorXY(x, y, RGBW32(c.r,c.g,c.b,0)); }
- inline uint32_t getPixelColorXY(uint16_t x, uint16_t y) { return getPixelColor(isMatrix ? y * Segment::maxWidth + x : x);}
+ inline uint32_t getPixelColorXY(int x, int y) const { return getPixelColor(isMatrix ? y * Segment::maxWidth + x : x); }
// end 2D support
- void loadCustomPalettes(void); // loads custom palettes from JSON
+ void loadCustomPalettes(); // loads custom palettes from JSON
std::vector customPalettes; // TODO: move custom palettes out of WS2812FX class
+ struct {
+ bool autoSegments : 1;
+ bool correctWB : 1;
+ bool cctFromRgb : 1;
+ };
+
// using public variables to reduce code size increase due to inline function getSegment() (with bounds checking)
// and color transitions
uint32_t _colors_t[3]; // color used for effect (includes transition)
@@ -964,14 +976,6 @@ class WS2812FX { // 96 bytes
uint8_t _segment_index;
uint8_t _mainSegment;
- uint8_t _queuedChangesSegId;
- uint16_t _qStart, _qStop, _qStartY, _qStopY;
- uint8_t _qGrouping, _qSpacing;
- uint16_t _qOffset;
-/*
- void
- setUpSegmentFromQueuedChanges(void);
-*/
};
extern const char JSON_mode_names[];
diff --git a/wled00/FX_2Dfcn.cpp b/wled00/FX_2Dfcn.cpp
index 94c9be1af..0e249b2f7 100644
--- a/wled00/FX_2Dfcn.cpp
+++ b/wled00/FX_2Dfcn.cpp
@@ -161,14 +161,14 @@ void WS2812FX::setUpMatrix() {
#ifndef WLED_DISABLE_2D
// XY(x,y) - gets pixel index within current segment (often used to reference leds[] array element)
-uint16_t IRAM_ATTR Segment::XY(uint16_t x, uint16_t y)
+uint16_t IRAM_ATTR_YN Segment::XY(int x, int y)
{
unsigned width = virtualWidth(); // segment width in logical pixels (can be 0 if segment is inactive)
unsigned height = virtualHeight(); // segment height in logical pixels (is always >= 1)
return isActive() ? (x%width) + (y%height) * width : 0;
}
-void IRAM_ATTR Segment::setPixelColorXY(int x, int y, uint32_t col)
+void IRAM_ATTR_YN Segment::setPixelColorXY(int x, int y, uint32_t col)
{
if (!isActive()) return; // not active
if (x >= virtualWidth() || y >= virtualHeight() || x<0 || y<0) return; // if pixel would fall out of virtual segment just exit
@@ -180,17 +180,20 @@ void IRAM_ATTR Segment::setPixelColorXY(int x, int y, uint32_t col)
if (reverse ) x = virtualWidth() - x - 1;
if (reverse_y) y = virtualHeight() - y - 1;
- if (transpose) { unsigned t = x; x = y; y = t; } // swap X & Y if segment transposed
+ if (transpose) { std::swap(x,y); } // swap X & Y if segment transposed
x *= groupLength(); // expand to physical pixels
y *= groupLength(); // expand to physical pixels
- if (x >= width() || y >= height()) return; // if pixel would fall out of segment just exit
+
+ int W = width();
+ int H = height();
+ if (x >= W || y >= H) return; // if pixel would fall out of segment just exit
uint32_t tmpCol = col;
for (int j = 0; j < grouping; j++) { // groupping vertically
for (int g = 0; g < grouping; g++) { // groupping horizontally
- unsigned xX = (x+g), yY = (y+j);
- if (xX >= width() || yY >= height()) continue; // we have reached one dimension's end
+ int xX = (x+g), yY = (y+j);
+ if (xX >= W || yY >= H) continue; // we have reached one dimension's end
#ifndef WLED_DISABLE_MODE_BLEND
// if blending modes, blend with underlying pixel
@@ -208,7 +211,7 @@ void IRAM_ATTR Segment::setPixelColorXY(int x, int y, uint32_t col)
else strip.setPixelColorXY(start + xX, startY + height() - yY - 1, tmpCol);
}
if (mirror_y && mirror) { //set the corresponding vertically AND horizontally mirrored pixel
- strip.setPixelColorXY(width() - xX - 1, height() - yY - 1, tmpCol);
+ strip.setPixelColorXY(start + width() - xX - 1, startY + height() - yY - 1, tmpCol);
}
}
}
@@ -261,12 +264,12 @@ void Segment::setPixelColorXY(float x, float y, uint32_t col, bool aa)
#endif
// returns RGBW values of pixel
-uint32_t IRAM_ATTR Segment::getPixelColorXY(int x, int y) {
+uint32_t IRAM_ATTR_YN Segment::getPixelColorXY(int x, int y) const {
if (!isActive()) return 0; // not active
if (x >= virtualWidth() || y >= virtualHeight() || x<0 || y<0) return 0; // if pixel would fall out of virtual segment just exit
if (reverse ) x = virtualWidth() - x - 1;
if (reverse_y) y = virtualHeight() - y - 1;
- if (transpose) { unsigned t = x; x = y; y = t; } // swap X & Y if segment transposed
+ if (transpose) { std::swap(x,y); } // swap X & Y if segment transposed
x *= groupLength(); // expand to physical pixels
y *= groupLength(); // expand to physical pixels
if (x >= width() || y >= height()) return 0;
@@ -339,39 +342,126 @@ void Segment::blurCol(uint32_t col, fract8 blur_amount, bool smear) {
setPixelColorXY(col, rows - 1, curnew);
}
-// 1D Box blur (with added weight - blur_amount: [0=no blur, 255=max blur])
-void Segment::box_blur(uint16_t i, bool vertical, fract8 blur_amount) {
+void Segment::blur2D(uint8_t blur_amount, bool smear) {
if (!isActive() || blur_amount == 0) return; // not active
- const int cols = virtualWidth();
- const int rows = virtualHeight();
- const int dim1 = vertical ? rows : cols;
- const int dim2 = vertical ? cols : rows;
- if (i >= dim2) return;
- const float seep = blur_amount/255.f;
- const float keep = 3.f - 2.f*seep;
- // 1D box blur
- uint32_t out[dim1], in[dim1];
- for (int j = 0; j < dim1; j++) {
- int x = vertical ? i : j;
- int y = vertical ? j : i;
- in[j] = getPixelColorXY(x, y);
+ const unsigned cols = virtualWidth();
+ const unsigned rows = virtualHeight();
+
+ const uint8_t keep = smear ? 255 : 255 - blur_amount;
+ const uint8_t seep = blur_amount >> (1 + smear);
+ uint32_t lastnew;
+ uint32_t last;
+ for (unsigned row = 0; row < rows; row++) {
+ uint32_t carryover = BLACK;
+ uint32_t curnew = BLACK;
+ for (unsigned x = 0; x < cols; x++) {
+ uint32_t cur = getPixelColorXY(x, row);
+ uint32_t part = color_fade(cur, seep);
+ curnew = color_fade(cur, keep);
+ if (x > 0) {
+ if (carryover) curnew = color_add(curnew, carryover, true);
+ uint32_t prev = color_add(lastnew, part, true);
+ // optimization: only set pixel if color has changed
+ if (last != prev) setPixelColorXY(x - 1, row, prev);
+ } else setPixelColorXY(x, row, curnew); // first pixel
+ lastnew = curnew;
+ last = cur; // save original value for comparison on next iteration
+ carryover = part;
+ }
+ setPixelColorXY(cols-1, row, curnew); // set last pixel
}
- for (int j = 0; j < dim1; j++) {
- uint32_t curr = in[j];
- uint32_t prev = j > 0 ? in[j-1] : BLACK;
- uint32_t next = j < dim1-1 ? in[j+1] : BLACK;
- uint8_t r, g, b, w;
- r = (R(curr)*keep + (R(prev) + R(next))*seep) / 3;
- g = (G(curr)*keep + (G(prev) + G(next))*seep) / 3;
- b = (B(curr)*keep + (B(prev) + B(next))*seep) / 3;
- w = (W(curr)*keep + (W(prev) + W(next))*seep) / 3;
- out[j] = RGBW32(r,g,b,w);
+ for (unsigned col = 0; col < cols; col++) {
+ uint32_t carryover = BLACK;
+ uint32_t curnew = BLACK;
+ for (unsigned y = 0; y < rows; y++) {
+ uint32_t cur = getPixelColorXY(col, y);
+ uint32_t part = color_fade(cur, seep);
+ curnew = color_fade(cur, keep);
+ if (y > 0) {
+ if (carryover) curnew = color_add(curnew, carryover, true);
+ uint32_t prev = color_add(lastnew, part, true);
+ // optimization: only set pixel if color has changed
+ if (last != prev) setPixelColorXY(col, y - 1, prev);
+ } else setPixelColorXY(col, y, curnew); // first pixel
+ lastnew = curnew;
+ last = cur; //save original value for comparison on next iteration
+ carryover = part;
+ }
+ setPixelColorXY(col, rows - 1, curnew);
}
- for (int j = 0; j < dim1; j++) {
- int x = vertical ? i : j;
- int y = vertical ? j : i;
- setPixelColorXY(x, y, out[j]);
+}
+
+// 2D Box blur
+void Segment::box_blur(unsigned radius, bool smear) {
+ if (!isActive() || radius == 0) return; // not active
+ if (radius > 3) radius = 3;
+ const unsigned d = (1 + 2*radius) * (1 + 2*radius); // averaging divisor
+ const unsigned cols = virtualWidth();
+ const unsigned rows = virtualHeight();
+ uint16_t *tmpRSum = new uint16_t[cols*rows];
+ uint16_t *tmpGSum = new uint16_t[cols*rows];
+ uint16_t *tmpBSum = new uint16_t[cols*rows];
+ uint16_t *tmpWSum = new uint16_t[cols*rows];
+ // fill summed-area table (https://en.wikipedia.org/wiki/Summed-area_table)
+ for (unsigned x = 0; x < cols; x++) {
+ unsigned rS, gS, bS, wS;
+ unsigned index;
+ rS = gS = bS = wS = 0;
+ for (unsigned y = 0; y < rows; y++) {
+ index = x * cols + y;
+ if (x > 0) {
+ unsigned index2 = (x - 1) * cols + y;
+ tmpRSum[index] = tmpRSum[index2];
+ tmpGSum[index] = tmpGSum[index2];
+ tmpBSum[index] = tmpBSum[index2];
+ tmpWSum[index] = tmpWSum[index2];
+ } else {
+ tmpRSum[index] = 0;
+ tmpGSum[index] = 0;
+ tmpBSum[index] = 0;
+ tmpWSum[index] = 0;
+ }
+ uint32_t c = getPixelColorXY(x, y);
+ rS += R(c);
+ gS += G(c);
+ bS += B(c);
+ wS += W(c);
+ tmpRSum[index] += rS;
+ tmpGSum[index] += gS;
+ tmpBSum[index] += bS;
+ tmpWSum[index] += wS;
+ }
}
+ // do a box blur using pre-calculated sums
+ for (unsigned x = 0; x < cols; x++) {
+ for (unsigned y = 0; y < rows; y++) {
+ // sum = D + A - B - C where k = (x,y)
+ // +----+-+---- (x)
+ // | | |
+ // +----A-B
+ // | |k|
+ // +----C-D
+ // |
+ //(y)
+ unsigned x0 = x < radius ? 0 : x - radius;
+ unsigned y0 = y < radius ? 0 : y - radius;
+ unsigned x1 = x >= cols - radius ? cols - 1 : x + radius;
+ unsigned y1 = y >= rows - radius ? rows - 1 : y + radius;
+ unsigned A = x0 * cols + y0;
+ unsigned B = x1 * cols + y0;
+ unsigned C = x0 * cols + y1;
+ unsigned D = x1 * cols + y1;
+ unsigned r = tmpRSum[D] + tmpRSum[A] - tmpRSum[C] - tmpRSum[B];
+ unsigned g = tmpGSum[D] + tmpGSum[A] - tmpGSum[C] - tmpGSum[B];
+ unsigned b = tmpBSum[D] + tmpBSum[A] - tmpBSum[C] - tmpBSum[B];
+ unsigned w = tmpWSum[D] + tmpWSum[A] - tmpWSum[C] - tmpWSum[B];
+ setPixelColorXY(x, y, RGBW32(r/d, g/d, b/d, w/d));
+ }
+ }
+ delete[] tmpRSum;
+ delete[] tmpGSum;
+ delete[] tmpBSum;
+ delete[] tmpWSum;
}
void Segment::moveX(int8_t delta, bool wrap) {
diff --git a/wled00/FX_fcn.cpp b/wled00/FX_fcn.cpp
index 594d8c8d3..1cc78f71e 100644
--- a/wled00/FX_fcn.cpp
+++ b/wled00/FX_fcn.cpp
@@ -43,21 +43,16 @@
19, 18, 17, 16, 15, 20, 21, 22, 23, 24, 29, 28, 27, 26, 25]}
*/
-//factory defaults LED setup
-//#define PIXEL_COUNTS 30, 30, 30, 30
-//#define DATA_PINS 16, 1, 3, 4
-//#define DEFAULT_LED_TYPE TYPE_WS2812_RGB
-
#ifndef PIXEL_COUNTS
#define PIXEL_COUNTS DEFAULT_LED_COUNT
#endif
#ifndef DATA_PINS
- #define DATA_PINS LEDPIN
+ #define DATA_PINS DEFAULT_LED_PIN
#endif
-#ifndef DEFAULT_LED_TYPE
- #define DEFAULT_LED_TYPE TYPE_WS2812_RGB
+#ifndef LED_TYPES
+ #define LED_TYPES DEFAULT_LED_TYPE
#endif
#ifndef DEFAULT_LED_COLOR_ORDER
@@ -69,6 +64,18 @@
#error "Max segments must be at least max number of busses!"
#endif
+static constexpr unsigned sumPinsRequired(const unsigned* current, size_t count) {
+ return (count > 0) ? (Bus::getNumberOfPins(*current) + sumPinsRequired(current+1,count-1)) : 0;
+}
+
+static constexpr bool validatePinsAndTypes(const unsigned* types, unsigned numTypes, unsigned numPins ) {
+ // Pins provided < pins required -> always invalid
+ // Pins provided = pins required -> always valid
+ // Pins provided > pins required -> valid if excess pins are a product of last type pins since it will be repeated
+ return (sumPinsRequired(types, numTypes) > numPins) ? false :
+ (numPins - sumPinsRequired(types, numTypes)) % Bus::getNumberOfPins(types[numTypes-1]) == 0;
+}
+
///////////////////////////////////////////////////////////////////////////////
// Segment class implementation
@@ -146,7 +153,7 @@ Segment& Segment::operator= (Segment &&orig) noexcept {
}
// allocates effect data buffer on heap and initialises (erases) it
-bool IRAM_ATTR Segment::allocateData(size_t len) {
+bool IRAM_ATTR_YN Segment::allocateData(size_t len) {
if (len == 0) return false; // nothing to do
if (data && _dataLen >= len) { // already allocated enough (reduce fragmentation)
if (call == 0) memset(data, 0, len); // erase buffer if called during effect initialisation
@@ -170,17 +177,13 @@ bool IRAM_ATTR Segment::allocateData(size_t len) {
return true;
}
-void IRAM_ATTR Segment::deallocateData() {
+void IRAM_ATTR_YN Segment::deallocateData() {
if (!data) { _dataLen = 0; return; }
//DEBUGFX_PRINTF_P(PSTR("--- Released data (%p): %d/%d -> %p\n"), this, _dataLen, Segment::getUsedSegmentData(), data);
if ((Segment::getUsedSegmentData() > 0) && (_dataLen > 0)) { // check that we don't have a dangling / inconsistent data pointer
free(data);
} else {
- DEBUGFX_PRINT(F("---- Released data "));
- DEBUGFX_PRINTF_P(PSTR("(%p): "), this);
- DEBUGFX_PRINT(F("inconsistent UsedSegmentData "));
- DEBUGFX_PRINTF_P(PSTR("(%d/%d)"), _dataLen, Segment::getUsedSegmentData());
- DEBUGFX_PRINTLN(F(", cowardly refusing to free nothing."));
+ DEBUGFX_PRINTF_P(PSTR("---- Released data (%p): inconsistent UsedSegmentData (%d/%d), cowardly refusing to free nothing.\n"), this, _dataLen, Segment::getUsedSegmentData());
}
data = nullptr;
Segment::addUsedSegmentData(_dataLen <= Segment::getUsedSegmentData() ? -_dataLen : -Segment::getUsedSegmentData());
@@ -202,7 +205,7 @@ void Segment::resetIfRequired() {
reset = false;
}
-CRGBPalette16 IRAM_ATTR &Segment::loadPalette(CRGBPalette16 &targetPalette, uint8_t pal) {
+CRGBPalette16 &Segment::loadPalette(CRGBPalette16 &targetPalette, uint8_t pal) {
if (pal < 245 && pal > GRADIENT_PALETTE_COUNT+13) pal = 0;
if (pal > 245 && (strip.customPalettes.size() == 0 || 255U-pal > strip.customPalettes.size()-1)) pal = 0; // TODO remove strip dependency by moving customPalettes out of strip
//default palette. Differs depending on effect
@@ -327,13 +330,8 @@ void Segment::stopTransition() {
}
}
-void Segment::handleTransition() {
- unsigned _progress = progress();
- if (_progress == 0xFFFFU) stopTransition();
-}
-
// transition progression between 0-65535
-uint16_t IRAM_ATTR Segment::progress() {
+uint16_t IRAM_ATTR Segment::progress() const {
if (isInTransition()) {
unsigned diff = millis() - _t->_start;
if (_t->_dur > 0 && diff < _t->_dur) return diff * 0xFFFFU / _t->_dur;
@@ -412,7 +410,7 @@ void Segment::restoreSegenv(tmpsegd_t &tmpSeg) {
}
#endif
-uint8_t IRAM_ATTR Segment::currentBri(bool useCct) {
+uint8_t IRAM_ATTR Segment::currentBri(bool useCct) const {
unsigned prog = progress();
if (prog < 0xFFFFU) {
unsigned curBri = (useCct ? cct : (on ? opacity : 0)) * prog;
@@ -422,7 +420,7 @@ uint8_t IRAM_ATTR Segment::currentBri(bool useCct) {
return (useCct ? cct : (on ? opacity : 0));
}
-uint8_t IRAM_ATTR Segment::currentMode() {
+uint8_t Segment::currentMode() const {
#ifndef WLED_DISABLE_MODE_BLEND
unsigned prog = progress();
if (modeBlending && prog < 0xFFFFU) return _t->_modeT;
@@ -430,7 +428,7 @@ uint8_t IRAM_ATTR Segment::currentMode() {
return mode;
}
-uint32_t IRAM_ATTR Segment::currentColor(uint8_t slot) {
+uint32_t IRAM_ATTR_YN Segment::currentColor(uint8_t slot) const {
if (slot >= NUM_COLORS) slot = 0;
#ifndef WLED_DISABLE_MODE_BLEND
return isInTransition() ? color_blend(_t->_segT._colorT[slot], colors[slot], progress(), true) : colors[slot];
@@ -623,7 +621,7 @@ uint16_t IRAM_ATTR Segment::virtualHeight() const {
return vHeight;
}
-uint16_t IRAM_ATTR Segment::nrOfVStrips() const {
+uint16_t IRAM_ATTR_YN Segment::nrOfVStrips() const {
unsigned vLen = 1;
#ifndef WLED_DISABLE_2D
if (is2D()) {
@@ -679,18 +677,23 @@ uint16_t IRAM_ATTR Segment::virtualLength() const {
if (is2D()) {
unsigned vW = virtualWidth();
unsigned vH = virtualHeight();
- unsigned vLen = vW * vH; // use all pixels from segment
+ unsigned vLen;
switch (map1D2D) {
case M12_pBar:
vLen = vH;
break;
case M12_pCorner:
- case M12_pArc:
vLen = max(vW,vH); // get the longest dimension
break;
+ case M12_pArc:
+ vLen = sqrt16(vH*vH + vW*vW); // use diagonal
+ break;
case M12_sPinwheel:
vLen = getPinwheelLength(vW, vH);
break;
+ default:
+ vLen = vW * vH; // use all pixels from segment
+ break;
}
return vLen;
}
@@ -701,7 +704,7 @@ uint16_t IRAM_ATTR Segment::virtualLength() const {
return vLength;
}
-void IRAM_ATTR Segment::setPixelColor(int i, uint32_t col)
+void IRAM_ATTR_YN Segment::setPixelColor(int i, uint32_t col)
{
if (!isActive()) return; // not active
#ifndef WLED_DISABLE_2D
@@ -730,12 +733,14 @@ void IRAM_ATTR Segment::setPixelColor(int i, uint32_t col)
if (i==0)
setPixelColorXY(0, 0, col);
else {
- float step = HALF_PI / (2.85f*i);
- for (float rad = 0.0f; rad <= HALF_PI+step/2; rad += step) {
- // may want to try float version as well (with or without antialiasing)
- int x = roundf(sin_t(rad) * i);
- int y = roundf(cos_t(rad) * i);
+ float r = i;
+ float step = HALF_PI / (2.8284f * r + 4); // we only need (PI/4)/(r/sqrt(2)+1) steps
+ for (float rad = 0.0f; rad <= (HALF_PI/2)+step/2; rad += step) {
+ int x = roundf(sin_t(rad) * r);
+ int y = roundf(cos_t(rad) * r);
+ // exploit symmetry
setPixelColorXY(x, y, col);
+ setPixelColorXY(y, x, col);
}
// Bresenham’s Algorithm (may not fill every pixel)
//int d = 3 - (2*i);
@@ -893,7 +898,7 @@ void Segment::setPixelColor(float i, uint32_t col, bool aa)
}
#endif
-uint32_t IRAM_ATTR Segment::getPixelColor(int i)
+uint32_t IRAM_ATTR_YN Segment::getPixelColor(int i) const
{
if (!isActive()) return 0; // not active
#ifndef WLED_DISABLE_2D
@@ -903,8 +908,8 @@ uint32_t IRAM_ATTR Segment::getPixelColor(int i)
#ifndef WLED_DISABLE_2D
if (is2D()) {
- unsigned vH = virtualHeight(); // segment height in logical pixels
- unsigned vW = virtualWidth();
+ int vH = virtualHeight(); // segment height in logical pixels
+ int vW = virtualWidth();
switch (map1D2D) {
case M12_Pixels:
return getPixelColorXY(i % vW, i / vW);
@@ -914,6 +919,10 @@ uint32_t IRAM_ATTR Segment::getPixelColor(int i)
else return getPixelColorXY(0, vH - i -1);
break;
case M12_pArc:
+ if (i >= vW && i >= vH) {
+ unsigned vI = sqrt16(i*i/2);
+ return getPixelColorXY(vI,vI); // use diagonal
+ }
case M12_pCorner:
// use longest dimension
return vW>vH ? getPixelColorXY(i, 0) : getPixelColorXY(0, i);
@@ -955,9 +964,9 @@ uint32_t IRAM_ATTR Segment::getPixelColor(int i)
if (reverse) i = virtualLength() - i - 1;
i *= groupLength();
i += start;
- /* offset/phase */
+ // offset/phase
i += offset;
- if ((i >= stop) && (stop>0)) i -= length(); // avoids negative pixel index (stop = 0 is a possible value)
+ if (i >= stop) i -= length();
return strip.getPixelColor(i);
}
@@ -1021,10 +1030,9 @@ void Segment::refreshLightCapabilities() {
if (bus->getStart() >= segStopIdx) continue;
if (bus->getStart() + bus->getLength() <= segStartIdx) continue;
- //uint8_t type = bus->getType();
- if (bus->hasRGB() || (cctFromRgb && bus->hasCCT())) capabilities |= SEG_CAPABILITY_RGB;
- if (!cctFromRgb && bus->hasCCT()) capabilities |= SEG_CAPABILITY_CCT;
- if (correctWB && (bus->hasRGB() || bus->hasCCT())) capabilities |= SEG_CAPABILITY_CCT; //white balance correction (CCT slider)
+ if (bus->hasRGB() || (strip.cctFromRgb && bus->hasCCT())) capabilities |= SEG_CAPABILITY_RGB;
+ if (!strip.cctFromRgb && bus->hasCCT()) capabilities |= SEG_CAPABILITY_CCT;
+ if (strip.correctWB && (bus->hasRGB() || bus->hasCCT())) capabilities |= SEG_CAPABILITY_CCT; //white balance correction (CCT slider)
if (bus->hasWhite()) {
unsigned aWM = Bus::getGlobalAWMode() == AW_GLOBAL_DISABLED ? bus->getAutoWhiteMode() : Bus::getGlobalAWMode();
bool whiteSlider = (aWM == RGBW_MODE_DUAL || aWM == RGBW_MODE_MANUAL_ONLY); // white slider allowed
@@ -1059,7 +1067,7 @@ void Segment::fade_out(uint8_t rate) {
const int rows = virtualHeight(); // will be 1 for 1D
rate = (255-rate) >> 1;
- float mappedRate = float(rate) +1.1f;
+ float mappedRate = 1.0f / (float(rate) + 1.1f);
uint32_t color = colors[1]; // SEGCOLOR(1); // target color
int w2 = W(color);
@@ -1069,15 +1077,16 @@ void Segment::fade_out(uint8_t rate) {
for (int y = 0; y < rows; y++) for (int x = 0; x < cols; x++) {
color = is2D() ? getPixelColorXY(x, y) : getPixelColor(x);
+ if (color == colors[1]) continue; // already at target color
int w1 = W(color);
int r1 = R(color);
int g1 = G(color);
int b1 = B(color);
- int wdelta = (w2 - w1) / mappedRate;
- int rdelta = (r2 - r1) / mappedRate;
- int gdelta = (g2 - g1) / mappedRate;
- int bdelta = (b2 - b1) / mappedRate;
+ int wdelta = (w2 - w1) * mappedRate;
+ int rdelta = (r2 - r1) * mappedRate;
+ int gdelta = (g2 - g1) * mappedRate;
+ int bdelta = (b2 - b1) * mappedRate;
// if fade isn't complete, make sure delta is at least 1 (fixes rounding issues)
wdelta += (w2 == w1) ? 0 : (w2 > w1) ? 1 : -1;
@@ -1110,15 +1119,13 @@ void Segment::blur(uint8_t blur_amount, bool smear) {
#ifndef WLED_DISABLE_2D
if (is2D()) {
// compatibility with 2D
- const unsigned cols = virtualWidth();
- const unsigned rows = virtualHeight();
- for (unsigned i = 0; i < rows; i++) blurRow(i, blur_amount, smear); // blur all rows
- for (unsigned k = 0; k < cols; k++) blurCol(k, blur_amount, smear); // blur all columns
+ blur2D(blur_amount, smear);
+ //box_blur(map(blur_amount,1,255,1,3), smear);
return;
}
#endif
uint8_t keep = smear ? 255 : 255 - blur_amount;
- uint8_t seep = blur_amount >> 1;
+ uint8_t seep = blur_amount >> (1 + smear);
unsigned vlength = virtualLength();
uint32_t carryover = BLACK;
uint32_t lastnew;
@@ -1129,13 +1136,11 @@ void Segment::blur(uint8_t blur_amount, bool smear) {
uint32_t part = color_fade(cur, seep);
curnew = color_fade(cur, keep);
if (i > 0) {
- if (carryover)
- curnew = color_add(curnew, carryover, true);
+ if (carryover) curnew = color_add(curnew, carryover, true);
uint32_t prev = color_add(lastnew, part, true);
- if (last != prev) // optimization: only set pixel if color has changed
- setPixelColor(i - 1, prev);
- }
- else // first pixel
+ // optimization: only set pixel if color has changed
+ if (last != prev) setPixelColor(i - 1, prev);
+ } else // first pixel
setPixelColor(i, curnew);
lastnew = curnew;
last = cur; // save original value for comparison on next iteration
@@ -1149,7 +1154,7 @@ void Segment::blur(uint8_t blur_amount, bool smear) {
* The colours are a transition r -> g -> b -> back to r
* Inspired by the Adafruit examples.
*/
-uint32_t Segment::color_wheel(uint8_t pos) {
+uint32_t Segment::color_wheel(uint8_t pos) const {
if (palette) return color_from_palette(pos, false, true, 0); // perhaps "strip.paletteBlend < 2" should be better instead of "true"
uint8_t w = W(currentColor(0));
pos = 255 - pos;
@@ -1173,7 +1178,7 @@ uint32_t Segment::color_wheel(uint8_t pos) {
* @param pbri Value to scale the brightness of the returned color by. Default is 255. (no scaling)
* @returns Single color from palette
*/
-uint32_t Segment::color_from_palette(uint16_t i, bool mapping, bool wrap, uint8_t mcol, uint8_t pbri) {
+uint32_t Segment::color_from_palette(uint16_t i, bool mapping, bool wrap, uint8_t mcol, uint8_t pbri) const {
uint32_t color = gamma32(currentColor(mcol));
// default palette or no RGB support on segment
@@ -1194,7 +1199,7 @@ uint32_t Segment::color_from_palette(uint16_t i, bool mapping, bool wrap, uint8_
///////////////////////////////////////////////////////////////////////////////
//do not call this method from system context (network callback)
-void WS2812FX::finalizeInit(void) {
+void WS2812FX::finalizeInit() {
//reset segment runtimes
for (segment &seg : _segments) {
seg.markForReset();
@@ -1212,28 +1217,82 @@ void WS2812FX::finalizeInit(void) {
//if busses failed to load, add default (fresh install, FS issue, ...)
if (BusManager::getNumBusses() == 0) {
DEBUGFX_PRINTLN(F("No busses, init default"));
- const unsigned defDataPins[] = {DATA_PINS};
- const unsigned defCounts[] = {PIXEL_COUNTS};
- const unsigned defNumPins = ((sizeof defDataPins) / (sizeof defDataPins[0]));
- const unsigned defNumCounts = ((sizeof defCounts) / (sizeof defCounts[0]));
- // if number of pins is divisible by counts, use number of counts to determine number of buses, otherwise use pins
- const unsigned defNumBusses = defNumPins > defNumCounts && defNumPins%defNumCounts == 0 ? defNumCounts : defNumPins;
- const unsigned pinsPerBus = defNumPins / defNumBusses;
+ constexpr unsigned defDataTypes[] = {LED_TYPES};
+ constexpr unsigned defDataPins[] = {DATA_PINS};
+ constexpr unsigned defCounts[] = {PIXEL_COUNTS};
+ constexpr unsigned defNumTypes = ((sizeof defDataTypes) / (sizeof defDataTypes[0]));
+ constexpr unsigned defNumPins = ((sizeof defDataPins) / (sizeof defDataPins[0]));
+ constexpr unsigned defNumCounts = ((sizeof defCounts) / (sizeof defCounts[0]));
+
+ static_assert(validatePinsAndTypes(defDataTypes, defNumTypes, defNumPins),
+ "The default pin list defined in DATA_PINS does not match the pin requirements for the default buses defined in LED_TYPES");
+
unsigned prevLen = 0;
- for (unsigned i = 0; i < defNumBusses && i < WLED_MAX_BUSSES+WLED_MIN_VIRTUAL_BUSSES; i++) {
- uint8_t defPin[5]; // max 5 pins
- for (unsigned j = 0; j < pinsPerBus; j++) defPin[j] = defDataPins[i*pinsPerBus + j];
- // when booting without config (1st boot) we need to make sure GPIOs defined for LED output don't clash with hardware
- // i.e. DEBUG (GPIO1), DMX (2), SPI RAM/FLASH (16&17 on ESP32-WROVER/PICO), etc
- if (pinManager.isPinAllocated(defPin[0])) {
- defPin[0] = 1; // start with GPIO1 and work upwards
- while (pinManager.isPinAllocated(defPin[0]) && defPin[0] < WLED_NUM_PINS) defPin[0]++;
+ unsigned pinsIndex = 0;
+ for (unsigned i = 0; i < WLED_MAX_BUSSES+WLED_MIN_VIRTUAL_BUSSES; i++) {
+ uint8_t defPin[OUTPUT_MAX_PINS];
+ // if we have less types than requested outputs and they do not align, use last known type to set current type
+ unsigned dataType = defDataTypes[(i < defNumTypes) ? i : defNumTypes -1];
+ unsigned busPins = Bus::getNumberOfPins(dataType);
+
+ // if we need more pins than available all outputs have been configured
+ if (pinsIndex + busPins > defNumPins) break;
+
+ // Assign all pins first so we can check for conflicts on this bus
+ for (unsigned j = 0; j < busPins && j < OUTPUT_MAX_PINS; j++) defPin[j] = defDataPins[pinsIndex + j];
+
+ for (unsigned j = 0; j < busPins && j < OUTPUT_MAX_PINS; j++) {
+ bool validPin = true;
+ // When booting without config (1st boot) we need to make sure GPIOs defined for LED output don't clash with hardware
+ // i.e. DEBUG (GPIO1), DMX (2), SPI RAM/FLASH (16&17 on ESP32-WROVER/PICO), read/only pins, etc.
+ // Pin should not be already allocated, read/only or defined for current bus
+ while (PinManager::isPinAllocated(defPin[j]) || !PinManager::isPinOk(defPin[j],true)) {
+ if (validPin) {
+ DEBUG_PRINTLN(F("Some of the provided pins cannot be used to configure this LED output."));
+ defPin[j] = 1; // start with GPIO1 and work upwards
+ validPin = false;
+ } else if (defPin[j] < WLED_NUM_PINS) {
+ defPin[j]++;
+ } else {
+ DEBUG_PRINTLN(F("No available pins left! Can't configure output."));
+ return;
+ }
+ // is the newly assigned pin already defined or used previously?
+ // try next in line until there are no clashes or we run out of pins
+ bool clash;
+ do {
+ clash = false;
+ // check for conflicts on current bus
+ for (const auto &pin : defPin) {
+ if (&pin != &defPin[j] && pin == defPin[j]) {
+ clash = true;
+ break;
+ }
+ }
+ // We already have a clash on current bus, no point checking next buses
+ if (!clash) {
+ // check for conflicts in defined pins
+ for (const auto &pin : defDataPins) {
+ if (pin == defPin[j]) {
+ clash = true;
+ break;
+ }
+ }
+ }
+ if (clash) defPin[j]++;
+ if (defPin[j] >= WLED_NUM_PINS) break;
+ } while (clash);
+ }
}
+ pinsIndex += busPins;
+
unsigned start = prevLen;
// if we have less counts than pins and they do not align, use last known count to set current count
unsigned count = defCounts[(i < defNumCounts) ? i : defNumCounts -1];
+ // analog always has length 1
+ if (Bus::isPWM(dataType)) count = 1;
prevLen += count;
- BusConfig defCfg = BusConfig(DEFAULT_LED_TYPE, defPin, start, count, DEFAULT_LED_COLOR_ORDER, false, 0, RGBW_MODE_MANUAL_ONLY, 0, useGlobalLedBuffer);
+ BusConfig defCfg = BusConfig(dataType, defPin, start, count, DEFAULT_LED_COLOR_ORDER, false, 0, RGBW_MODE_MANUAL_ONLY, 0, useGlobalLedBuffer);
if (BusManager::add(defCfg) == -1) break;
}
}
@@ -1246,12 +1305,12 @@ void WS2812FX::finalizeInit(void) {
//RGBW mode is enabled if at least one of the strips is RGBW
_hasWhiteChannel |= bus->hasWhite();
//refresh is required to remain off if at least one of the strips requires the refresh.
- _isOffRefreshRequired |= bus->isOffRefreshRequired();
+ _isOffRefreshRequired |= bus->isOffRefreshRequired() && !bus->isPWM(); // use refresh bit for phase shift with analog
unsigned busEnd = bus->getStart() + bus->getLength();
if (busEnd > _length) _length = busEnd;
#ifdef ESP8266
// why do we need to reinitialise GPIO3???
- //if ((!IS_DIGITAL(bus->getType()) || IS_2PIN(bus->getType()))) continue;
+ //if (!bus->isDigital() || bus->is2Pin()) continue;
//uint8_t pins[5];
//if (!bus->getPins(pins)) continue;
//BusDigital* bd = static_cast(bus);
@@ -1357,13 +1416,13 @@ void IRAM_ATTR WS2812FX::setPixelColor(unsigned i, uint32_t col) {
BusManager::setPixelColor(i, col);
}
-uint32_t IRAM_ATTR WS2812FX::getPixelColor(uint16_t i) {
+uint32_t IRAM_ATTR WS2812FX::getPixelColor(uint16_t i) const {
i = getMappedPixelIndex(i);
if (i >= _length) return 0;
return BusManager::getPixelColor(i);
}
-void WS2812FX::show(void) {
+void WS2812FX::show() {
// avoid race condition, capture _callback value
show_callback callback = _callback;
if (callback) callback();
@@ -1385,7 +1444,7 @@ void WS2812FX::show(void) {
* Returns a true value if any of the strips are still being updated.
* On some hardware (ESP32), strip updates are done asynchronously.
*/
-bool WS2812FX::isUpdating() {
+bool WS2812FX::isUpdating() const {
return !BusManager::canAllShow();
}
@@ -1393,7 +1452,7 @@ bool WS2812FX::isUpdating() {
* Returns the refresh rate of the LED strip. Useful for finding out whether a given setup is fast enough.
* Only updates on show() or is set to 0 fps if last show is more than 2 secs ago, so accuracy varies
*/
-uint16_t WS2812FX::getFps() {
+uint16_t WS2812FX::getFps() const {
if (millis() - _lastShow > 2000) return 0;
return _cumulativeFps +1;
}
@@ -1452,17 +1511,17 @@ void WS2812FX::setBrightness(uint8_t b, bool direct) {
}
}
-uint8_t WS2812FX::getActiveSegsLightCapabilities(bool selectedOnly) {
+uint8_t WS2812FX::getActiveSegsLightCapabilities(bool selectedOnly) const {
uint8_t totalLC = 0;
- for (segment &seg : _segments) {
+ for (const segment &seg : _segments) {
if (seg.isActive() && (!selectedOnly || seg.isSelected())) totalLC |= seg.getLightCapabilities();
}
return totalLC;
}
-uint8_t WS2812FX::getFirstSelectedSegId(void) {
+uint8_t WS2812FX::getFirstSelectedSegId() const {
size_t i = 0;
- for (segment &seg : _segments) {
+ for (const segment &seg : _segments) {
if (seg.isActive() && seg.isSelected()) return i;
i++;
}
@@ -1478,14 +1537,14 @@ void WS2812FX::setMainSegmentId(uint8_t n) {
return;
}
-uint8_t WS2812FX::getLastActiveSegmentId(void) {
+uint8_t WS2812FX::getLastActiveSegmentId() const {
for (size_t i = _segments.size() -1; i > 0; i--) {
if (_segments[i].isActive()) return i;
}
return 0;
}
-uint8_t WS2812FX::getActiveSegmentsNum(void) {
+uint8_t WS2812FX::getActiveSegmentsNum() const {
uint8_t c = 0;
for (size_t i = 0; i < _segments.size(); i++) {
if (_segments[i].isActive()) c++;
@@ -1493,17 +1552,17 @@ uint8_t WS2812FX::getActiveSegmentsNum(void) {
return c;
}
-uint16_t WS2812FX::getLengthTotal(void) {
+uint16_t WS2812FX::getLengthTotal() const {
unsigned len = Segment::maxWidth * Segment::maxHeight; // will be _length for 1D (see finalizeInit()) but should cover whole matrix for 2D
if (isMatrix && _length > len) len = _length; // for 2D with trailing strip
return len;
}
-uint16_t WS2812FX::getLengthPhysical(void) {
+uint16_t WS2812FX::getLengthPhysical() const {
unsigned len = 0;
for (size_t b = 0; b < BusManager::getNumBusses(); b++) {
Bus *bus = BusManager::getBus(b);
- if (bus->getType() >= TYPE_NET_DDP_RGB) continue; //exclude non-physical network busses
+ if (bus->isVirtual()) continue; //exclude non-physical network busses
len += bus->getLength();
}
return len;
@@ -1512,7 +1571,7 @@ uint16_t WS2812FX::getLengthPhysical(void) {
//used for JSON API info.leds.rgbw. Little practical use, deprecate with info.leds.rgbw.
//returns if there is an RGBW bus (supports RGB and White, not only white)
//not influenced by auto-white mode, also true if white slider does not affect output white channel
-bool WS2812FX::hasRGBWBus(void) {
+bool WS2812FX::hasRGBWBus() const {
for (size_t b = 0; b < BusManager::getNumBusses(); b++) {
Bus *bus = BusManager::getBus(b);
if (bus == nullptr || bus->getLength()==0) break;
@@ -1521,7 +1580,7 @@ bool WS2812FX::hasRGBWBus(void) {
return false;
}
-bool WS2812FX::hasCCTBus(void) {
+bool WS2812FX::hasCCTBus() const {
if (cctFromRgb && !correctWB) return false;
for (size_t b = 0; b < BusManager::getNumBusses(); b++) {
Bus *bus = BusManager::getBus(b);
@@ -1813,7 +1872,7 @@ bool WS2812FX::deserializeMap(uint8_t n) {
return (customMappingSize > 0);
}
-uint16_t IRAM_ATTR WS2812FX::getMappedPixelIndex(uint16_t index) {
+uint16_t IRAM_ATTR WS2812FX::getMappedPixelIndex(uint16_t index) const {
// convert logical address to physical
if (index < customMappingSize
&& (realtimeMode == REALTIME_MODE_INACTIVE || realtimeRespectLedMaps)) index = customMappingTable[index];
diff --git a/wled00/bus_manager.cpp b/wled00/bus_manager.cpp
index 14ede756f..0dbdb26c9 100644
--- a/wled00/bus_manager.cpp
+++ b/wled00/bus_manager.cpp
@@ -4,6 +4,18 @@
#include
#include
+#ifdef ARDUINO_ARCH_ESP32
+#include "driver/ledc.h"
+#include "soc/ledc_struct.h"
+ #if !(defined(CONFIG_IDF_TARGET_ESP32C3) || defined(CONFIG_IDF_TARGET_ESP32S2) || defined(CONFIG_IDF_TARGET_ESP32S3))
+ #define LEDC_MUTEX_LOCK() do {} while (xSemaphoreTake(_ledc_sys_lock, portMAX_DELAY) != pdPASS)
+ #define LEDC_MUTEX_UNLOCK() xSemaphoreGive(_ledc_sys_lock)
+ extern xSemaphoreHandle _ledc_sys_lock;
+ #else
+ #define LEDC_MUTEX_LOCK()
+ #define LEDC_MUTEX_UNLOCK()
+ #endif
+#endif
#include "const.h"
#include "pin_manager.h"
#include "bus_wrapper.h"
@@ -25,38 +37,46 @@ uint8_t realtimeBroadcast(uint8_t type, IPAddress client, uint16_t length, byte
#define W(c) (byte((c) >> 24))
-void ColorOrderMap::add(uint16_t start, uint16_t len, uint8_t colorOrder) {
- if (_count >= WLED_MAX_COLOR_ORDER_MAPPINGS) {
- return;
- }
- if (len == 0) {
- return;
- }
- // upper nibble contains W swap information
- if ((colorOrder & 0x0F) > COL_ORDER_MAX) {
- return;
- }
- _mappings[_count].start = start;
- _mappings[_count].len = len;
- _mappings[_count].colorOrder = colorOrder;
- _count++;
+bool ColorOrderMap::add(uint16_t start, uint16_t len, uint8_t colorOrder) {
+ if (count() >= WLED_MAX_COLOR_ORDER_MAPPINGS || len == 0 || (colorOrder & 0x0F) > COL_ORDER_MAX) return false; // upper nibble contains W swap information
+ _mappings.push_back({start,len,colorOrder});
+ return true;
}
uint8_t IRAM_ATTR ColorOrderMap::getPixelColorOrder(uint16_t pix, uint8_t defaultColorOrder) const {
- if (_count > 0) {
- // upper nibble contains W swap information
- // when ColorOrderMap's upper nibble contains value >0 then swap information is used from it, otherwise global swap is used
- for (unsigned i = 0; i < _count; i++) {
- if (pix >= _mappings[i].start && pix < (_mappings[i].start + _mappings[i].len)) {
- return _mappings[i].colorOrder | ((_mappings[i].colorOrder >> 4) ? 0 : (defaultColorOrder & 0xF0));
- }
+ // upper nibble contains W swap information
+ // when ColorOrderMap's upper nibble contains value >0 then swap information is used from it, otherwise global swap is used
+ for (unsigned i = 0; i < count(); i++) {
+ if (pix >= _mappings[i].start && pix < (_mappings[i].start + _mappings[i].len)) {
+ return _mappings[i].colorOrder | ((_mappings[i].colorOrder >> 4) ? 0 : (defaultColorOrder & 0xF0));
}
}
return defaultColorOrder;
}
-uint32_t Bus::autoWhiteCalc(uint32_t c) {
+void Bus::calculateCCT(uint32_t c, uint8_t &ww, uint8_t &cw) {
+ unsigned cct = 0; //0 - full warm white, 255 - full cold white
+ unsigned w = W(c);
+
+ if (_cct > -1) { // using RGB?
+ if (_cct >= 1900) cct = (_cct - 1900) >> 5; // convert K in relative format
+ else if (_cct < 256) cct = _cct; // already relative
+ } else {
+ cct = (approximateKelvinFromRGB(c) - 1900) >> 5; // convert K (from RGB value) to relative format
+ }
+
+ //0 - linear (CCT 127 = 50% warm, 50% cold), 127 - additive CCT blending (CCT 127 = 100% warm, 100% cold)
+ if (cct < _cctBlend) ww = 255;
+ else ww = ((255-cct) * 255) / (255 - _cctBlend);
+ if ((255-cct) < _cctBlend) cw = 255;
+ else cw = (cct * 255) / (255 - _cctBlend);
+
+ ww = (w * ww) / 255; //brightness scaling
+ cw = (w * cw) / 255;
+}
+
+uint32_t Bus::autoWhiteCalc(uint32_t c) const {
unsigned aWM = _autoWhiteMode;
if (_gAWM < AW_GLOBAL_DISABLED) aWM = _gAWM;
if (aWM == RGBW_MODE_MANUAL_ONLY) return c;
@@ -72,7 +92,7 @@ uint32_t Bus::autoWhiteCalc(uint32_t c) {
return RGBW32(r, g, b, w);
}
-uint8_t *Bus::allocData(size_t size) {
+uint8_t *Bus::allocateData(size_t size) {
if (_data) free(_data); // should not happen, but for safety
return _data = (uint8_t *)(size>0 ? calloc(size, sizeof(uint8_t)) : nullptr);
}
@@ -86,12 +106,12 @@ BusDigital::BusDigital(BusConfig &bc, uint8_t nr, const ColorOrderMap &com)
, _milliAmpsMax(bc.milliAmpsMax)
, _colorOrderMap(com)
{
- if (!IS_DIGITAL(bc.type) || !bc.count) return;
- if (!pinManager.allocatePin(bc.pins[0], true, PinOwner::BusDigital)) return;
+ if (!isDigital(bc.type) || !bc.count) return;
+ if (!PinManager::allocatePin(bc.pins[0], true, PinOwner::BusDigital)) return;
_frequencykHz = 0U;
_pins[0] = bc.pins[0];
- if (IS_2PIN(bc.type)) {
- if (!pinManager.allocatePin(bc.pins[1], true, PinOwner::BusDigital)) {
+ if (is2Pin(bc.type)) {
+ if (!PinManager::allocatePin(bc.pins[1], true, PinOwner::BusDigital)) {
cleanup();
return;
}
@@ -100,13 +120,16 @@ BusDigital::BusDigital(BusConfig &bc, uint8_t nr, const ColorOrderMap &com)
}
_iType = PolyBus::getI(bc.type, _pins, nr);
if (_iType == I_NONE) return;
- if (bc.doubleBuffer && !allocData(bc.count * Bus::getNumberOfChannels(bc.type))) return;
+ _hasRgb = hasRGB(bc.type);
+ _hasWhite = hasWhite(bc.type);
+ _hasCCT = hasCCT(bc.type);
+ if (bc.doubleBuffer && !allocateData(bc.count * Bus::getNumberOfChannels(bc.type))) return;
//_buffering = bc.doubleBuffer;
uint16_t lenToCreate = bc.count;
if (bc.type == TYPE_WS2812_1CH_X3) lenToCreate = NUM_ICS_WS2812_1CH_3X(bc.count); // only needs a third of "RGB" LEDs for NeoPixelBus
_busPtr = PolyBus::create(_iType, _pins, lenToCreate + _skip, nr, _frequencykHz);
_valid = (_busPtr != nullptr);
- DEBUGBUS_PRINTF_P(PSTR("%successfully inited strip %u (len %u) with type %u and pins %u,%u (itype %u). mA=%d/%d\n"), _valid?"S":"Uns", nr, bc.count, bc.type, _pins[0], IS_2PIN(bc.type)?_pins[1]:255, _iType, _milliAmpsPerLed, _milliAmpsMax);
+ DEBUGBUS_PRINTF_P(PSTR("%successfully inited strip %u (len %u) with type %u and pins %u,%u (itype %u). mA=%d/%d\n"), _valid?"S":"Uns", nr, bc.count, bc.type, _pins[0], is2Pin(bc.type)?_pins[1]:255, _iType, _milliAmpsPerLed, _milliAmpsMax);
}
//fine tune power estimation constants for your setup
@@ -240,7 +263,7 @@ void BusDigital::show() {
if (newBri < _bri) PolyBus::setBrightness(_busPtr, _iType, _bri);
}
-bool BusDigital::canShow() {
+bool BusDigital::canShow() const {
if (!_valid) return true;
return PolyBus::canShow(_busPtr, _iType);
}
@@ -296,7 +319,7 @@ void IRAM_ATTR BusDigital::setPixelColor(uint16_t pix, uint32_t c) {
}
// returns original color if global buffering is enabled, else returns lossly restored color from bus
-uint32_t IRAM_ATTR BusDigital::getPixelColor(uint16_t pix) {
+uint32_t IRAM_ATTR BusDigital::getPixelColor(uint16_t pix) const {
if (!_valid) return 0;
if (_data) {
size_t offset = pix * getNumberOfChannels();
@@ -326,9 +349,9 @@ uint32_t IRAM_ATTR BusDigital::getPixelColor(uint16_t pix) {
}
}
-uint8_t BusDigital::getPins(uint8_t* pinArray) {
- unsigned numPins = IS_2PIN(_type) ? 2 : 1;
- for (unsigned i = 0; i < numPins; i++) pinArray[i] = _pins[i];
+uint8_t BusDigital::getPins(uint8_t* pinArray) const {
+ unsigned numPins = is2Pin(_type) + 1;
+ if (pinArray) for (unsigned i = 0; i < numPins; i++) pinArray[i] = _pins[i];
return numPins;
}
@@ -338,6 +361,32 @@ void BusDigital::setColorOrder(uint8_t colorOrder) {
_colorOrder = colorOrder;
}
+// credit @willmmiles & @netmindz https://github.com/Aircoookie/WLED/pull/4056
+std::vector BusDigital::getLEDTypes() {
+ return {
+ {TYPE_WS2812_RGB, "D", PSTR("WS281x")},
+ {TYPE_SK6812_RGBW, "D", PSTR("SK6812/WS2814 RGBW")},
+ {TYPE_TM1814, "D", PSTR("TM1814")},
+ {TYPE_WS2811_400KHZ, "D", PSTR("400kHz")},
+ {TYPE_TM1829, "D", PSTR("TM1829")},
+ {TYPE_UCS8903, "D", PSTR("UCS8903")},
+ {TYPE_APA106, "D", PSTR("APA106/PL9823")},
+ {TYPE_TM1914, "D", PSTR("TM1914")},
+ {TYPE_FW1906, "D", PSTR("FW1906 GRBCW")},
+ {TYPE_UCS8904, "D", PSTR("UCS8904 RGBW")},
+ {TYPE_WS2805, "D", PSTR("WS2805 RGBCW")},
+ {TYPE_SM16825, "D", PSTR("SM16825 RGBCW")},
+ {TYPE_WS2812_1CH_X3, "D", PSTR("WS2811 White")},
+ //{TYPE_WS2812_2CH_X3, "D", PSTR("WS2811 CCT")}, // not implemented
+ //{TYPE_WS2812_WWA, "D", PSTR("WS2811 WWA")}, // not implemented
+ {TYPE_WS2801, "2P", PSTR("WS2801")},
+ {TYPE_APA102, "2P", PSTR("APA102")},
+ {TYPE_LPD8806, "2P", PSTR("LPD8806")},
+ {TYPE_LPD6803, "2P", PSTR("LPD6803")},
+ {TYPE_P9813, "2P", PSTR("PP9813")},
+ };
+}
+
void BusDigital::reinit() {
if (!_valid) return;
PolyBus::begin(_busPtr, _iType, _pins);
@@ -350,8 +399,8 @@ void BusDigital::cleanup() {
_valid = false;
_busPtr = nullptr;
if (_data != nullptr) freeData();
- pinManager.deallocatePin(_pins[1], PinOwner::BusDigital);
- pinManager.deallocatePin(_pins[0], PinOwner::BusDigital);
+ PinManager::deallocatePin(_pins[1], PinOwner::BusDigital);
+ PinManager::deallocatePin(_pins[0], PinOwner::BusDigital);
}
@@ -376,42 +425,54 @@ void BusDigital::cleanup() {
#define MAX_BIT_WIDTH SOC_LEDC_TIMER_BIT_WIDE_NUM
#else
// ESP32: 20 bit (but in reality we would never go beyond 16 bit as the frequency would be to low)
- #define MAX_BIT_WIDTH 20
+ #define MAX_BIT_WIDTH 14
#endif
#endif
BusPwm::BusPwm(BusConfig &bc)
-: Bus(bc.type, bc.start, bc.autoWhite, 1, bc.reversed)
+: Bus(bc.type, bc.start, bc.autoWhite, 1, bc.reversed, bc.refreshReq) // hijack Off refresh flag to indicate usage of dithering
{
- if (!IS_PWM(bc.type)) return;
- unsigned numPins = NUM_PWM_PINS(bc.type);
+ if (!isPWM(bc.type)) return;
+ unsigned numPins = numPWMPins(bc.type);
+ [[maybe_unused]] const bool dithering = _needsRefresh;
_frequency = bc.frequency ? bc.frequency : WLED_PWM_FREQ;
// duty cycle resolution (_depth) can be extracted from this formula: CLOCK_FREQUENCY > _frequency * 2^_depth
for (_depth = MAX_BIT_WIDTH; _depth > 8; _depth--) if (((CLOCK_FREQUENCY/_frequency) >> _depth) > 0) break;
+ managed_pin_type pins[numPins];
+ for (unsigned i = 0; i < numPins; i++) pins[i] = {(int8_t)bc.pins[i], true};
+ if (!PinManager::allocateMultiplePins(pins, numPins, PinOwner::BusPwm)) return;
+
#ifdef ESP8266
analogWriteRange((1<<_depth)-1);
analogWriteFreq(_frequency);
#else
- _ledcStart = pinManager.allocateLedc(numPins);
+ // for 2 pin PWM CCT strip pinManager will make sure both LEDC channels are in the same speed group and sharing the same timer
+ _ledcStart = PinManager::allocateLedc(numPins);
if (_ledcStart == 255) { //no more free LEDC channels
- deallocatePins(); return;
+ PinManager::deallocateMultiplePins(pins, numPins, PinOwner::BusPwm);
+ return;
}
+ // if _needsRefresh is true (UI hack) we are using dithering (credit @dedehai & @zalatnaicsongor)
+ if (dithering) _depth = 12; // fixed 8 bit depth PWM with 4 bit dithering (ESP8266 has no hardware to support dithering)
#endif
for (unsigned i = 0; i < numPins; i++) {
- uint8_t currentPin = bc.pins[i];
- if (!pinManager.allocatePin(currentPin, true, PinOwner::BusPwm)) {
- deallocatePins(); return;
- }
- _pins[i] = currentPin; //store only after allocatePin() succeeds
+ _pins[i] = bc.pins[i]; // store only after allocateMultiplePins() succeeded
#ifdef ESP8266
pinMode(_pins[i], OUTPUT);
#else
- ledcSetup(_ledcStart + i, _frequency, _depth);
- ledcAttachPin(_pins[i], _ledcStart + i);
+ unsigned channel = _ledcStart + i;
+ ledcSetup(channel, _frequency, _depth - (dithering*4)); // with dithering _frequency doesn't really matter as resolution is 8 bit
+ ledcAttachPin(_pins[i], channel);
+ // LEDC timer reset credit @dedehai
+ uint8_t group = (channel / 8), timer = ((channel / 2) % 4); // same fromula as in ledcSetup()
+ ledc_timer_rst((ledc_mode_t)group, (ledc_timer_t)timer); // reset timer so all timers are almost in sync (for phase shift)
#endif
}
+ _hasRgb = hasRGB(bc.type);
+ _hasWhite = hasWhite(bc.type);
+ _hasCCT = hasCCT(bc.type);
_data = _pwmdata; // avoid malloc() and use stack
_valid = true;
DEBUGBUS_PRINTF_P(PSTR("%successfully inited PWM strip with type %u, frequency %u, bit depth %u and pins %u,%u,%u,%u,%u\n"), _valid?"S":"Uns", bc.type, _frequency, _depth, _pins[0], _pins[1], _pins[2], _pins[3], _pins[4]);
@@ -454,7 +515,7 @@ void BusPwm::setPixelColor(uint16_t pix, uint32_t c) {
}
//does no index check
-uint32_t BusPwm::getPixelColor(uint16_t pix) {
+uint32_t BusPwm::getPixelColor(uint16_t pix) const {
if (!_valid) return 0;
// TODO getting the reverse from CCT is involved (a quick approximation when CCT blending is ste to 0 implemented)
switch (_type) {
@@ -474,79 +535,98 @@ uint32_t BusPwm::getPixelColor(uint16_t pix) {
return RGBW32(_data[0], _data[0], _data[0], _data[0]);
}
-#ifndef ESP8266
-static const uint16_t cieLUT[256] = {
- 0, 2, 4, 5, 7, 9, 11, 13, 15, 16,
- 18, 20, 22, 24, 26, 27, 29, 31, 33, 35,
- 34, 36, 37, 39, 41, 43, 45, 47, 49, 52,
- 54, 56, 59, 61, 64, 67, 69, 72, 75, 78,
- 81, 84, 87, 90, 94, 97, 100, 104, 108, 111,
- 115, 119, 123, 127, 131, 136, 140, 144, 149, 154,
- 158, 163, 168, 173, 178, 183, 189, 194, 200, 205,
- 211, 217, 223, 229, 235, 241, 247, 254, 261, 267,
- 274, 281, 288, 295, 302, 310, 317, 325, 333, 341,
- 349, 357, 365, 373, 382, 391, 399, 408, 417, 426,
- 436, 445, 455, 464, 474, 484, 494, 505, 515, 526,
- 536, 547, 558, 569, 580, 592, 603, 615, 627, 639,
- 651, 663, 676, 689, 701, 714, 727, 741, 754, 768,
- 781, 795, 809, 824, 838, 853, 867, 882, 897, 913,
- 928, 943, 959, 975, 991, 1008, 1024, 1041, 1058, 1075,
- 1092, 1109, 1127, 1144, 1162, 1180, 1199, 1217, 1236, 1255,
- 1274, 1293, 1312, 1332, 1352, 1372, 1392, 1412, 1433, 1454,
- 1475, 1496, 1517, 1539, 1561, 1583, 1605, 1628, 1650, 1673,
- 1696, 1719, 1743, 1767, 1791, 1815, 1839, 1864, 1888, 1913,
- 1939, 1964, 1990, 2016, 2042, 2068, 2095, 2121, 2148, 2176,
- 2203, 2231, 2259, 2287, 2315, 2344, 2373, 2402, 2431, 2461,
- 2491, 2521, 2551, 2581, 2612, 2643, 2675, 2706, 2738, 2770,
- 2802, 2835, 2867, 2900, 2934, 2967, 3001, 3035, 3069, 3104,
- 3138, 3174, 3209, 3244, 3280, 3316, 3353, 3389, 3426, 3463,
- 3501, 3539, 3576, 3615, 3653, 3692, 3731, 3770, 3810, 3850,
- 3890, 3930, 3971, 4012, 4053, 4095
-};
-#endif
-
void BusPwm::show() {
if (!_valid) return;
- unsigned numPins = NUM_PWM_PINS(_type);
- unsigned maxBri = (1<<_depth) - 1;
- #ifdef ESP8266
- unsigned pwmBri = (unsigned)(roundf(powf((float)_bri / 255.0f, 1.7f) * (float)maxBri)); // using gamma 1.7 to extrapolate PWM duty cycle
- #else
- unsigned pwmBri = cieLUT[_bri] >> (12 - _depth); // use CIE LUT
- #endif
+ // if _needsRefresh is true (UI hack) we are using dithering (credit @dedehai & @zalatnaicsongor)
+ // https://github.com/Aircoookie/WLED/pull/4115 and https://github.com/zalatnaicsongor/WLED/pull/1)
+ const bool dithering = _needsRefresh; // avoid working with bitfield
+ const unsigned numPins = getPins();
+ const unsigned maxBri = (1<<_depth); // possible values: 16384 (14), 8192 (13), 4096 (12), 2048 (11), 1024 (10), 512 (9) and 256 (8)
+ [[maybe_unused]] const unsigned bitShift = dithering * 4; // if dithering, _depth is 12 bit but LEDC channel is set to 8 bit (using 4 fractional bits)
+
+ // use CIE brightness formula (cubic) to fit (or approximate linearity of) human eye perceived brightness
+ // the formula is based on 12 bit resolution as there is no need for greater precision
+ // see: https://en.wikipedia.org/wiki/Lightness
+ unsigned pwmBri = (unsigned)_bri * 100; // enlarge to use integer math for linear response
+ if (pwmBri < 2040) {
+ // linear response for values [0-20]
+ pwmBri = ((pwmBri << 12) + 115043) / 230087; //adding '0.5' before division for correct rounding
+ } else {
+ // cubic response for values [21-255]
+ pwmBri += 4080;
+ float temp = (float)pwmBri / 29580.0f;
+ temp = temp * temp * temp * (float)maxBri;
+ pwmBri = (unsigned)temp; // pwmBri is in range [0-maxBri]
+ }
+
+ [[maybe_unused]] unsigned hPoint = 0; // phase shift (0 - maxBri)
+ // we will be phase shifting every channel by previous pulse length (plus dead time if required)
+ // phase shifting is only mandatory when using H-bridge to drive reverse-polarity PWM CCT (2 wire) LED type
+ // CCT additive blending must be 0 (WW & CW will not overlap) otherwise signals *will* overlap
+ // for all other cases it will just try to "spread" the load on PSU
+ // Phase shifting requires that LEDC timers are synchronised (see setup()). For PWM CCT (and H-bridge) it is
+ // also mandatory that both channels use the same timer (pinManager takes care of that).
for (unsigned i = 0; i < numPins; i++) {
- unsigned scaled = (_data[i] * pwmBri) / 255;
- if (_reversed) scaled = maxBri - scaled;
+ unsigned duty = (_data[i] * pwmBri) / 255;
#ifdef ESP8266
- analogWrite(_pins[i], scaled);
+ if (_reversed) duty = maxBri - duty;
+ analogWrite(_pins[i], duty);
#else
- ledcWrite(_ledcStart + i, scaled);
+ int deadTime = 0;
+ if (_type == TYPE_ANALOG_2CH && Bus::getCCTBlend() == 0) {
+ // add dead time between signals (when using dithering, two full 8bit pulses are required)
+ deadTime = (1+dithering) << bitShift;
+ // we only need to take care of shortening the signal at (almost) full brightness otherwise pulses may overlap
+ if (_bri >= 254 && duty >= maxBri / 2 && duty < maxBri) duty -= deadTime << 1; // shorten duty of larger signal except if full on
+ if (_reversed) deadTime = -deadTime; // need to invert dead time to make phaseshift go the opposite way so low signals dont overlap
+ }
+ if (_reversed) duty = maxBri - duty;
+ unsigned channel = _ledcStart + i;
+ unsigned gr = channel/8; // high/low speed group
+ unsigned ch = channel%8; // group channel
+ // directly write to LEDC struct as there is no HAL exposed function for dithering
+ // duty has 20 bit resolution with 4 fractional bits (24 bits in total)
+ LEDC.channel_group[gr].channel[ch].duty.duty = duty << ((!dithering)*4); // lowest 4 bits are used for dithering, shift by 4 bits if not using dithering
+ LEDC.channel_group[gr].channel[ch].hpoint.hpoint = hPoint >> bitShift; // hPoint is at _depth resolution (needs shifting if dithering)
+ ledc_update_duty((ledc_mode_t)gr, (ledc_channel_t)ch);
+ hPoint += duty + deadTime; // offset to cascade the signals
+ if (hPoint >= maxBri) hPoint = 0; // offset it out of bounds, reset
#endif
}
}
-uint8_t BusPwm::getPins(uint8_t* pinArray) {
+uint8_t BusPwm::getPins(uint8_t* pinArray) const {
if (!_valid) return 0;
- unsigned numPins = NUM_PWM_PINS(_type);
- for (unsigned i = 0; i < numPins; i++) {
- pinArray[i] = _pins[i];
- }
+ unsigned numPins = numPWMPins(_type);
+ if (pinArray) for (unsigned i = 0; i < numPins; i++) pinArray[i] = _pins[i];
return numPins;
}
+// credit @willmmiles & @netmindz https://github.com/Aircoookie/WLED/pull/4056
+std::vector BusPwm::getLEDTypes() {
+ return {
+ {TYPE_ANALOG_1CH, "A", PSTR("PWM White")},
+ {TYPE_ANALOG_2CH, "AA", PSTR("PWM CCT")},
+ {TYPE_ANALOG_3CH, "AAA", PSTR("PWM RGB")},
+ {TYPE_ANALOG_4CH, "AAAA", PSTR("PWM RGBW")},
+ {TYPE_ANALOG_5CH, "AAAAA", PSTR("PWM RGB+CCT")},
+ //{TYPE_ANALOG_6CH, "AAAAAA", PSTR("PWM RGB+DCCT")}, // unimplementable ATM
+ };
+}
+
void BusPwm::deallocatePins() {
- unsigned numPins = NUM_PWM_PINS(_type);
+ unsigned numPins = getPins();
for (unsigned i = 0; i < numPins; i++) {
- pinManager.deallocatePin(_pins[i], PinOwner::BusPwm);
- if (!pinManager.isPinOk(_pins[i])) continue;
+ PinManager::deallocatePin(_pins[i], PinOwner::BusPwm);
+ if (!PinManager::isPinOk(_pins[i])) continue;
#ifdef ESP8266
digitalWrite(_pins[i], LOW); //turn off PWM interrupt
#else
- if (_ledcStart < 16) ledcDetachPin(_pins[i]);
+ if (_ledcStart < WLED_MAX_ANALOG_CHANNELS) ledcDetachPin(_pins[i]);
#endif
}
#ifdef ARDUINO_ARCH_ESP32
- pinManager.deallocateLedc(_ledcStart, numPins);
+ PinManager::deallocateLedc(_ledcStart, numPins);
#endif
}
@@ -555,14 +635,17 @@ BusOnOff::BusOnOff(BusConfig &bc)
: Bus(bc.type, bc.start, bc.autoWhite, 1, bc.reversed)
, _onoffdata(0)
{
- if (bc.type != TYPE_ONOFF) return;
+ if (!Bus::isOnOff(bc.type)) return;
uint8_t currentPin = bc.pins[0];
- if (!pinManager.allocatePin(currentPin, true, PinOwner::BusOnOff)) {
+ if (!PinManager::allocatePin(currentPin, true, PinOwner::BusOnOff)) {
return;
}
_pin = currentPin; //store only after allocatePin() succeeds
pinMode(_pin, OUTPUT);
+ _hasRgb = false;
+ _hasWhite = false;
+ _hasCCT = false;
_data = &_onoffdata; // avoid malloc() and use stack
_valid = true;
DEBUGBUS_PRINTF_P(PSTR("%successfully inited On/Off strip with pin %u\n"), _valid?"S":"Uns", _pin);
@@ -578,7 +661,7 @@ void BusOnOff::setPixelColor(uint16_t pix, uint32_t c) {
_data[0] = bool(r|g|b|w) && bool(_bri) ? 0xFF : 0;
}
-uint32_t BusOnOff::getPixelColor(uint16_t pix) {
+uint32_t BusOnOff::getPixelColor(uint16_t pix) const {
if (!_valid) return 0;
return RGBW32(_data[0], _data[0], _data[0], _data[0]);
}
@@ -588,12 +671,18 @@ void BusOnOff::show() {
digitalWrite(_pin, _reversed ? !(bool)_data[0] : (bool)_data[0]);
}
-uint8_t BusOnOff::getPins(uint8_t* pinArray) {
+uint8_t BusOnOff::getPins(uint8_t* pinArray) const {
if (!_valid) return 0;
- pinArray[0] = _pin;
+ if (pinArray) pinArray[0] = _pin;
return 1;
}
+// credit @willmmiles & @netmindz https://github.com/Aircoookie/WLED/pull/4056
+std::vector BusOnOff::getLEDTypes() {
+ return {
+ {TYPE_ONOFF, "", PSTR("On/Off")},
+ };
+}
BusNetwork::BusNetwork(BusConfig &bc)
: Bus(bc.type, bc.start, bc.autoWhite, bc.count)
@@ -601,59 +690,71 @@ BusNetwork::BusNetwork(BusConfig &bc)
{
switch (bc.type) {
case TYPE_NET_ARTNET_RGB:
- _rgbw = false;
_UDPtype = 2;
break;
case TYPE_NET_ARTNET_RGBW:
- _rgbw = true;
_UDPtype = 2;
break;
case TYPE_NET_E131_RGB:
- _rgbw = false;
_UDPtype = 1;
break;
default: // TYPE_NET_DDP_RGB / TYPE_NET_DDP_RGBW
- _rgbw = bc.type == TYPE_NET_DDP_RGBW;
_UDPtype = 0;
break;
}
- _UDPchannels = _rgbw ? 4 : 3;
+ _hasRgb = hasRGB(bc.type);
+ _hasWhite = hasWhite(bc.type);
+ _hasCCT = false;
+ _UDPchannels = _hasWhite + 3;
_client = IPAddress(bc.pins[0],bc.pins[1],bc.pins[2],bc.pins[3]);
- _valid = (allocData(_len * _UDPchannels) != nullptr);
+ _valid = (allocateData(_len * _UDPchannels) != nullptr);
DEBUGBUS_PRINTF_P(PSTR("%successfully inited virtual strip with type %u and IP %u.%u.%u.%u\n"), _valid?"S":"Uns", bc.type, bc.pins[0], bc.pins[1], bc.pins[2], bc.pins[3]);
}
void BusNetwork::setPixelColor(uint16_t pix, uint32_t c) {
if (!_valid || pix >= _len) return;
- if (_rgbw) c = autoWhiteCalc(c);
+ if (_hasWhite) c = autoWhiteCalc(c);
if (Bus::_cct >= 1900) c = colorBalanceFromKelvin(Bus::_cct, c); //color correction from CCT
unsigned offset = pix * _UDPchannels;
_data[offset] = R(c);
_data[offset+1] = G(c);
_data[offset+2] = B(c);
- if (_rgbw) _data[offset+3] = W(c);
+ if (_hasWhite) _data[offset+3] = W(c);
}
-uint32_t BusNetwork::getPixelColor(uint16_t pix) {
+uint32_t BusNetwork::getPixelColor(uint16_t pix) const {
if (!_valid || pix >= _len) return 0;
unsigned offset = pix * _UDPchannels;
- return RGBW32(_data[offset], _data[offset+1], _data[offset+2], (_rgbw ? _data[offset+3] : 0));
+ return RGBW32(_data[offset], _data[offset+1], _data[offset+2], (hasWhite() ? _data[offset+3] : 0));
}
void BusNetwork::show() {
if (!_valid || !canShow()) return;
_broadcastLock = true;
- realtimeBroadcast(_UDPtype, _client, _len, _data, _bri, _rgbw);
+ realtimeBroadcast(_UDPtype, _client, _len, _data, _bri, hasWhite());
_broadcastLock = false;
}
-uint8_t BusNetwork::getPins(uint8_t* pinArray) {
- for (unsigned i = 0; i < 4; i++) {
- pinArray[i] = _client[i];
- }
+uint8_t BusNetwork::getPins(uint8_t* pinArray) const {
+ if (pinArray) for (unsigned i = 0; i < 4; i++) pinArray[i] = _client[i];
return 4;
}
+// credit @willmmiles & @netmindz https://github.com/Aircoookie/WLED/pull/4056
+std::vector BusNetwork::getLEDTypes() {
+ return {
+ {TYPE_NET_DDP_RGB, "N", PSTR("DDP RGB (network)")}, // should be "NNNN" to determine 4 "pin" fields
+ {TYPE_NET_ARTNET_RGB, "N", PSTR("Art-Net RGB (network)")},
+ {TYPE_NET_DDP_RGBW, "N", PSTR("DDP RGBW (network)")},
+ {TYPE_NET_ARTNET_RGBW, "N", PSTR("Art-Net RGBW (network)")},
+ // hypothetical extensions
+ //{TYPE_VIRTUAL_I2C_W, "V", PSTR("I2C White (virtual)")}, // allows setting I2C address in _pin[0]
+ //{TYPE_VIRTUAL_I2C_CCT, "V", PSTR("I2C CCT (virtual)")}, // allows setting I2C address in _pin[0]
+ //{TYPE_VIRTUAL_I2C_RGB, "VVV", PSTR("I2C RGB (virtual)")}, // allows setting I2C address in _pin[0] and 2 additional values in _pin[1] & _pin[2]
+ //{TYPE_USERMOD, "VVVVV", PSTR("Usermod (virtual)")}, // 5 data fields (see https://github.com/Aircoookie/WLED/pull/4123)
+ };
+}
+
void BusNetwork::cleanup() {
_type = I_NONE;
_valid = false;
@@ -663,13 +764,13 @@ void BusNetwork::cleanup() {
//utility to get the approx. memory usage of a given BusConfig
uint32_t BusManager::memUsage(BusConfig &bc) {
- if (bc.type == TYPE_ONOFF || IS_PWM(bc.type)) return 5;
+ if (Bus::isOnOff(bc.type) || Bus::isPWM(bc.type)) return OUTPUT_MAX_PINS;
unsigned len = bc.count + bc.skipAmount;
unsigned channels = Bus::getNumberOfChannels(bc.type);
unsigned multiplier = 1;
- if (IS_DIGITAL(bc.type)) { // digital types
- if (IS_16BIT(bc.type)) len *= 2; // 16-bit LEDs
+ if (Bus::isDigital(bc.type)) { // digital types
+ if (Bus::is16bit(bc.type)) len *= 2; // 16-bit LEDs
#ifdef ESP8266
if (bc.pins[0] == 3) { //8266 DMA uses 5x the mem
multiplier = 5;
@@ -689,11 +790,11 @@ uint32_t BusManager::memUsage(unsigned maxChannels, unsigned maxCount, unsigned
int BusManager::add(BusConfig &bc) {
if (getNumBusses() - getNumVirtualBusses() >= WLED_MAX_BUSSES) return -1;
- if (IS_VIRTUAL(bc.type)) {
+ if (Bus::isVirtual(bc.type)) {
busses[numBusses] = new BusNetwork(bc);
- } else if (IS_DIGITAL(bc.type)) {
+ } else if (Bus::isDigital(bc.type)) {
busses[numBusses] = new BusDigital(bc, numBusses, colorOrderMap);
- } else if (bc.type == TYPE_ONOFF) {
+ } else if (Bus::isOnOff(bc.type)) {
busses[numBusses] = new BusOnOff(bc);
} else {
busses[numBusses] = new BusPwm(bc);
@@ -701,7 +802,32 @@ int BusManager::add(BusConfig &bc) {
return numBusses++;
}
-void BusManager::useParallelOutput(void) {
+// credit @willmmiles
+static String LEDTypesToJson(const std::vector& types) {
+ String json;
+ for (const auto &type : types) {
+ // capabilities follows similar pattern as JSON API
+ int capabilities = Bus::hasRGB(type.id) | Bus::hasWhite(type.id)<<1 | Bus::hasCCT(type.id)<<2 | Bus::is16bit(type.id)<<4 | Bus::mustRefresh(type.id)<<5;
+ char str[256];
+ sprintf_P(str, PSTR("{i:%d,c:%d,t:\"%s\",n:\"%s\"},"), type.id, capabilities, type.type, type.name);
+ json += str;
+ }
+ return json;
+}
+
+// credit @willmmiles & @netmindz https://github.com/Aircoookie/WLED/pull/4056
+String BusManager::getLEDTypesJSONString() {
+ String json = "[";
+ json += LEDTypesToJson(BusDigital::getLEDTypes());
+ json += LEDTypesToJson(BusOnOff::getLEDTypes());
+ json += LEDTypesToJson(BusPwm::getLEDTypes());
+ json += LEDTypesToJson(BusNetwork::getLEDTypes());
+ //json += LEDTypesToJson(BusVirtual::getLEDTypes());
+ json.setCharAt(json.length()-1, ']'); // replace last comma with bracket
+ return json;
+}
+
+void BusManager::useParallelOutput() {
_parallelOutputs = 8; // hardcoded since we use NPB I2S x8 methods
PolyBus::setParallelI2S1Output();
}
@@ -739,7 +865,7 @@ void BusManager::esp32RMTInvertIdle() {
if (u >= _parallelOutputs + 8) return; // only 8 RMT channels
rmt = u - _parallelOutputs;
#endif
- if (busses[u]->getLength()==0 || !IS_DIGITAL(busses[u]->getType()) || IS_2PIN(busses[u]->getType())) continue;
+ if (busses[u]->getLength()==0 || !busses[u]->isDigital() || busses[u]->is2Pin()) continue;
//assumes that bus number to rmt channel mapping stays 1:1
rmt_channel_t ch = static_cast(rmt);
rmt_idle_level_t lvl;
@@ -755,10 +881,10 @@ void BusManager::esp32RMTInvertIdle() {
void BusManager::on() {
#ifdef ESP8266
//Fix for turning off onboard LED breaking bus
- if (pinManager.getPinOwner(LED_BUILTIN) == PinOwner::BusDigital) {
+ if (PinManager::getPinOwner(LED_BUILTIN) == PinOwner::BusDigital) {
for (unsigned i = 0; i < numBusses; i++) {
uint8_t pins[2] = {255,255};
- if (IS_DIGITAL(busses[i]->getType()) && busses[i]->getPins(pins)) {
+ if (busses[i]->isDigital() && busses[i]->getPins(pins)) {
if (pins[0] == LED_BUILTIN || pins[1] == LED_BUILTIN) {
BusDigital *bus = static_cast(busses[i]);
bus->reinit();
@@ -777,7 +903,7 @@ void BusManager::off() {
#ifdef ESP8266
// turn off built-in LED if strip is turned off
// this will break digital bus so will need to be re-initialised on On
- if (pinManager.getPinOwner(LED_BUILTIN) == PinOwner::BusDigital) {
+ if (PinManager::getPinOwner(LED_BUILTIN) == PinOwner::BusDigital) {
for (unsigned i = 0; i < numBusses; i++) if (busses[i]->isOffRefreshRequired()) return;
pinMode(LED_BUILTIN, OUTPUT);
digitalWrite(LED_BUILTIN, HIGH);
@@ -829,7 +955,7 @@ void BusManager::setSegmentCCT(int16_t cct, bool allowWBCorrection) {
uint32_t BusManager::getPixelColor(uint16_t pix) {
for (unsigned i = 0; i < numBusses; i++) {
unsigned bstart = busses[i]->getStart();
- if (pix < bstart || pix >= bstart + busses[i]->getLength()) continue;
+ if (!busses[i]->containsPixel(pix)) continue;
return busses[i]->getPixelColor(pix - bstart);
}
return 0;
diff --git a/wled00/bus_manager.h b/wled00/bus_manager.h
index 6e29cae22..799626ac1 100644
--- a/wled00/bus_manager.h
+++ b/wled00/bus_manager.h
@@ -6,6 +6,7 @@
*/
#include "const.h"
+#include
// enable additional debug output
#if defined(WLED_DEBUG_HOST)
@@ -44,6 +45,298 @@ uint16_t approximateKelvinFromRGB(uint32_t rgb);
#define IC_INDEX_WS2812_2CH_3X(i) ((i)*2/3)
#define WS2812_2CH_3X_SPANS_2_ICS(i) ((i)&0x01) // every other LED zone is on two different ICs
+struct BusConfig; // forward declaration
+
+// Defines an LED Strip and its color ordering.
+typedef struct {
+ uint16_t start;
+ uint16_t len;
+ uint8_t colorOrder;
+} ColorOrderMapEntry;
+
+struct ColorOrderMap {
+ bool add(uint16_t start, uint16_t len, uint8_t colorOrder);
+
+ inline uint8_t count() const { return _mappings.size(); }
+ inline void reserve(size_t num) { _mappings.reserve(num); }
+
+ void reset() {
+ _mappings.clear();
+ _mappings.shrink_to_fit();
+ }
+
+ const ColorOrderMapEntry* get(uint8_t n) const {
+ if (n >= count()) return nullptr;
+ return &(_mappings[n]);
+ }
+
+ [[gnu::hot]] uint8_t getPixelColorOrder(uint16_t pix, uint8_t defaultColorOrder) const;
+
+ private:
+ std::vector _mappings;
+};
+
+
+typedef struct {
+ uint8_t id;
+ const char *type;
+ const char *name;
+} LEDType;
+
+
+//parent class of BusDigital, BusPwm, and BusNetwork
+class Bus {
+ public:
+ Bus(uint8_t type, uint16_t start, uint8_t aw, uint16_t len = 1, bool reversed = false, bool refresh = false)
+ : _type(type)
+ , _bri(255)
+ , _start(start)
+ , _len(len)
+ , _reversed(reversed)
+ , _valid(false)
+ , _needsRefresh(refresh)
+ , _data(nullptr) // keep data access consistent across all types of buses
+ {
+ _autoWhiteMode = Bus::hasWhite(type) ? aw : RGBW_MODE_MANUAL_ONLY;
+ };
+
+ virtual ~Bus() {} //throw the bus under the bus
+
+ virtual void show() = 0;
+ virtual bool canShow() const { return true; }
+ virtual void setStatusPixel(uint32_t c) {}
+ virtual void setPixelColor(uint16_t pix, uint32_t c) = 0;
+ virtual void setBrightness(uint8_t b) { _bri = b; };
+ virtual void setColorOrder(uint8_t co) {}
+ virtual uint32_t getPixelColor(uint16_t pix) const { return 0; }
+ virtual uint8_t getPins(uint8_t* pinArray = nullptr) const { return 0; }
+ virtual uint16_t getLength() const { return isOk() ? _len : 0; }
+ virtual uint8_t getColorOrder() const { return COL_ORDER_RGB; }
+ virtual uint8_t skippedLeds() const { return 0; }
+ virtual uint16_t getFrequency() const { return 0U; }
+ virtual uint16_t getLEDCurrent() const { return 0; }
+ virtual uint16_t getUsedCurrent() const { return 0; }
+ virtual uint16_t getMaxCurrent() const { return 0; }
+
+ inline bool hasRGB() const { return _hasRgb; }
+ inline bool hasWhite() const { return _hasWhite; }
+ inline bool hasCCT() const { return _hasCCT; }
+ inline bool isDigital() const { return isDigital(_type); }
+ inline bool is2Pin() const { return is2Pin(_type); }
+ inline bool isOnOff() const { return isOnOff(_type); }
+ inline bool isPWM() const { return isPWM(_type); }
+ inline bool isVirtual() const { return isVirtual(_type); }
+ inline bool is16bit() const { return is16bit(_type); }
+ inline bool mustRefresh() const { return mustRefresh(_type); }
+ inline void setReversed(bool reversed) { _reversed = reversed; }
+ inline void setStart(uint16_t start) { _start = start; }
+ inline void setAutoWhiteMode(uint8_t m) { if (m < 5) _autoWhiteMode = m; }
+ inline uint8_t getAutoWhiteMode() const { return _autoWhiteMode; }
+ inline uint8_t getNumberOfChannels() const { return hasWhite() + 3*hasRGB() + hasCCT(); }
+ inline uint16_t getStart() const { return _start; }
+ inline uint8_t getType() const { return _type; }
+ inline bool isOk() const { return _valid; }
+ inline bool isReversed() const { return _reversed; }
+ inline bool isOffRefreshRequired() const { return _needsRefresh; }
+ inline bool containsPixel(uint16_t pix) const { return pix >= _start && pix < _start + _len; }
+
+ static inline std::vector getLEDTypes() { return {{TYPE_NONE, "", PSTR("None")}}; } // not used. just for reference for derived classes
+ static constexpr uint8_t getNumberOfPins(uint8_t type) { return isVirtual(type) ? 4 : isPWM(type) ? numPWMPins(type) : is2Pin(type) + 1; } // credit @PaoloTK
+ static constexpr uint8_t getNumberOfChannels(uint8_t type) { return hasWhite(type) + 3*hasRGB(type) + hasCCT(type); }
+ static constexpr bool hasRGB(uint8_t type) {
+ return !((type >= TYPE_WS2812_1CH && type <= TYPE_WS2812_WWA) || type == TYPE_ANALOG_1CH || type == TYPE_ANALOG_2CH || type == TYPE_ONOFF);
+ }
+ static constexpr bool hasWhite(uint8_t type) {
+ return (type >= TYPE_WS2812_1CH && type <= TYPE_WS2812_WWA) ||
+ type == TYPE_SK6812_RGBW || type == TYPE_TM1814 || type == TYPE_UCS8904 ||
+ type == TYPE_FW1906 || type == TYPE_WS2805 || type == TYPE_SM16825 || // digital types with white channel
+ (type > TYPE_ONOFF && type <= TYPE_ANALOG_5CH && type != TYPE_ANALOG_3CH) || // analog types with white channel
+ type == TYPE_NET_DDP_RGBW || type == TYPE_NET_ARTNET_RGBW; // network types with white channel
+ }
+ static constexpr bool hasCCT(uint8_t type) {
+ return type == TYPE_WS2812_2CH_X3 || type == TYPE_WS2812_WWA ||
+ type == TYPE_ANALOG_2CH || type == TYPE_ANALOG_5CH ||
+ type == TYPE_FW1906 || type == TYPE_WS2805 ||
+ type == TYPE_SM16825;
+ }
+ static constexpr bool isTypeValid(uint8_t type) { return (type > 15 && type < 128); }
+ static constexpr bool isDigital(uint8_t type) { return (type >= TYPE_DIGITAL_MIN && type <= TYPE_DIGITAL_MAX) || is2Pin(type); }
+ static constexpr bool is2Pin(uint8_t type) { return (type >= TYPE_2PIN_MIN && type <= TYPE_2PIN_MAX); }
+ static constexpr bool isOnOff(uint8_t type) { return (type == TYPE_ONOFF); }
+ static constexpr bool isPWM(uint8_t type) { return (type >= TYPE_ANALOG_MIN && type <= TYPE_ANALOG_MAX); }
+ static constexpr bool isVirtual(uint8_t type) { return (type >= TYPE_VIRTUAL_MIN && type <= TYPE_VIRTUAL_MAX); }
+ static constexpr bool is16bit(uint8_t type) { return type == TYPE_UCS8903 || type == TYPE_UCS8904 || type == TYPE_SM16825; }
+ static constexpr bool mustRefresh(uint8_t type) { return type == TYPE_TM1814; }
+ static constexpr int numPWMPins(uint8_t type) { return (type - 40); }
+
+ static inline int16_t getCCT() { return _cct; }
+ static inline void setGlobalAWMode(uint8_t m) { if (m < 5) _gAWM = m; else _gAWM = AW_GLOBAL_DISABLED; }
+ static inline uint8_t getGlobalAWMode() { return _gAWM; }
+ static inline void setCCT(int16_t cct) { _cct = cct; }
+ static inline uint8_t getCCTBlend() { return _cctBlend; }
+ static inline void setCCTBlend(uint8_t b) {
+ _cctBlend = (std::min((int)b,100) * 127) / 100;
+ //compile-time limiter for hardware that can't power both white channels at max
+ #ifdef WLED_MAX_CCT_BLEND
+ if (_cctBlend > WLED_MAX_CCT_BLEND) _cctBlend = WLED_MAX_CCT_BLEND;
+ #endif
+ }
+ static void calculateCCT(uint32_t c, uint8_t &ww, uint8_t &cw);
+
+ protected:
+ uint8_t _type;
+ uint8_t _bri;
+ uint16_t _start;
+ uint16_t _len;
+ //struct { //using bitfield struct adds abour 250 bytes to binary size
+ bool _reversed;// : 1;
+ bool _valid;// : 1;
+ bool _needsRefresh;// : 1;
+ bool _hasRgb;// : 1;
+ bool _hasWhite;// : 1;
+ bool _hasCCT;// : 1;
+ //} __attribute__ ((packed));
+ uint8_t _autoWhiteMode;
+ uint8_t *_data;
+ // global Auto White Calculation override
+ static uint8_t _gAWM;
+ // _cct has the following menaings (see calculateCCT() & BusManager::setSegmentCCT()):
+ // -1 means to extract approximate CCT value in K from RGB (in calcualteCCT())
+ // [0,255] is the exact CCT value where 0 means warm and 255 cold
+ // [1900,10060] only for color correction expressed in K (colorBalanceFromKelvin())
+ static int16_t _cct;
+ // _cctBlend determines WW/CW blending:
+ // 0 - linear (CCT 127 => 50% warm, 50% cold)
+ // 63 - semi additive/nonlinear (CCT 127 => 66% warm, 66% cold)
+ // 127 - additive CCT blending (CCT 127 => 100% warm, 100% cold)
+ static uint8_t _cctBlend;
+
+ uint32_t autoWhiteCalc(uint32_t c) const;
+ uint8_t *allocateData(size_t size = 1);
+ void freeData() { if (_data != nullptr) free(_data); _data = nullptr; }
+};
+
+
+class BusDigital : public Bus {
+ public:
+ BusDigital(BusConfig &bc, uint8_t nr, const ColorOrderMap &com);
+ ~BusDigital() { cleanup(); }
+
+ void show() override;
+ bool canShow() const override;
+ void setBrightness(uint8_t b) override;
+ void setStatusPixel(uint32_t c) override;
+ [[gnu::hot]] void setPixelColor(uint16_t pix, uint32_t c) override;
+ void setColorOrder(uint8_t colorOrder) override;
+ [[gnu::hot]] uint32_t getPixelColor(uint16_t pix) const override;
+ uint8_t getColorOrder() const override { return _colorOrder; }
+ uint8_t getPins(uint8_t* pinArray = nullptr) const override;
+ uint8_t skippedLeds() const override { return _skip; }
+ uint16_t getFrequency() const override { return _frequencykHz; }
+ uint16_t getLEDCurrent() const override { return _milliAmpsPerLed; }
+ uint16_t getUsedCurrent() const override { return _milliAmpsTotal; }
+ uint16_t getMaxCurrent() const override { return _milliAmpsMax; }
+ void reinit();
+ void cleanup();
+
+ static std::vector getLEDTypes();
+
+ private:
+ uint8_t _skip;
+ uint8_t _colorOrder;
+ uint8_t _pins[2];
+ uint8_t _iType;
+ uint16_t _frequencykHz;
+ uint8_t _milliAmpsPerLed;
+ uint16_t _milliAmpsMax;
+ void * _busPtr;
+ const ColorOrderMap &_colorOrderMap;
+
+ static uint16_t _milliAmpsTotal; // is overwitten/recalculated on each show()
+
+ inline uint32_t restoreColorLossy(uint32_t c, uint8_t restoreBri) const {
+ if (restoreBri < 255) {
+ uint8_t* chan = (uint8_t*) &c;
+ for (uint_fast8_t i=0; i<4; i++) {
+ uint_fast16_t val = chan[i];
+ chan[i] = ((val << 8) + restoreBri) / (restoreBri + 1); //adding _bri slightly improves recovery / stops degradation on re-scale
+ }
+ }
+ return c;
+ }
+
+ uint8_t estimateCurrentAndLimitBri();
+};
+
+
+class BusPwm : public Bus {
+ public:
+ BusPwm(BusConfig &bc);
+ ~BusPwm() { cleanup(); }
+
+ void setPixelColor(uint16_t pix, uint32_t c) override;
+ uint32_t getPixelColor(uint16_t pix) const override; //does no index check
+ uint8_t getPins(uint8_t* pinArray = nullptr) const override;
+ uint16_t getFrequency() const override { return _frequency; }
+ void show() override;
+ void cleanup() { deallocatePins(); }
+
+ static std::vector getLEDTypes();
+
+ private:
+ uint8_t _pins[OUTPUT_MAX_PINS];
+ uint8_t _pwmdata[OUTPUT_MAX_PINS];
+ #ifdef ARDUINO_ARCH_ESP32
+ uint8_t _ledcStart;
+ #endif
+ uint8_t _depth;
+ uint16_t _frequency;
+
+ void deallocatePins();
+};
+
+
+class BusOnOff : public Bus {
+ public:
+ BusOnOff(BusConfig &bc);
+ ~BusOnOff() { cleanup(); }
+
+ void setPixelColor(uint16_t pix, uint32_t c) override;
+ uint32_t getPixelColor(uint16_t pix) const override;
+ uint8_t getPins(uint8_t* pinArray) const override;
+ void show() override;
+ void cleanup() { PinManager::deallocatePin(_pin, PinOwner::BusOnOff); }
+
+ static std::vector getLEDTypes();
+
+ private:
+ uint8_t _pin;
+ uint8_t _onoffdata;
+};
+
+
+class BusNetwork : public Bus {
+ public:
+ BusNetwork(BusConfig &bc);
+ ~BusNetwork() { cleanup(); }
+
+ bool canShow() const override { return !_broadcastLock; } // this should be a return value from UDP routine if it is still sending data out
+ void setPixelColor(uint16_t pix, uint32_t c) override;
+ uint32_t getPixelColor(uint16_t pix) const override;
+ uint8_t getPins(uint8_t* pinArray = nullptr) const override;
+ void show() override;
+ void cleanup();
+
+ static std::vector getLEDTypes();
+
+ private:
+ IPAddress _client;
+ uint8_t _UDPtype;
+ uint8_t _UDPchannels;
+ bool _broadcastLock;
+};
+
+
//temporary struct for passing bus configuration to bus
struct BusConfig {
uint8_t type;
@@ -74,10 +367,7 @@ struct BusConfig {
{
refreshReq = (bool) GET_BIT(busType,7);
type = busType & 0x7F; // bit 7 may be/is hacked to include refresh info (1=refresh in off state, 0=no refresh)
- size_t nPins = 1;
- if (IS_VIRTUAL(type)) nPins = 4; //virtual network bus. 4 "pins" store IP address
- else if (IS_2PIN(type)) nPins = 2;
- else if (IS_PWM(type)) nPins = NUM_PWM_PINS(type);
+ size_t nPins = Bus::getNumberOfPins(type);
for (size_t i = 0; i < nPins; i++) pins[i] = ppins[i];
}
@@ -95,284 +385,6 @@ struct BusConfig {
};
-// Defines an LED Strip and its color ordering.
-struct ColorOrderMapEntry {
- uint16_t start;
- uint16_t len;
- uint8_t colorOrder;
-};
-
-struct ColorOrderMap {
- void add(uint16_t start, uint16_t len, uint8_t colorOrder);
-
- uint8_t count() const { return _count; }
-
- void reset() {
- _count = 0;
- memset(_mappings, 0, sizeof(_mappings));
- }
-
- const ColorOrderMapEntry* get(uint8_t n) const {
- if (n > _count) {
- return nullptr;
- }
- return &(_mappings[n]);
- }
-
- uint8_t getPixelColorOrder(uint16_t pix, uint8_t defaultColorOrder) const;
-
- private:
- uint8_t _count;
- ColorOrderMapEntry _mappings[WLED_MAX_COLOR_ORDER_MAPPINGS];
-};
-
-
-//parent class of BusDigital, BusPwm, and BusNetwork
-class Bus {
- public:
- Bus(uint8_t type, uint16_t start, uint8_t aw, uint16_t len = 1, bool reversed = false, bool refresh = false)
- : _type(type)
- , _bri(255)
- , _start(start)
- , _len(len)
- , _reversed(reversed)
- , _valid(false)
- , _needsRefresh(refresh)
- , _data(nullptr) // keep data access consistent across all types of buses
- {
- _autoWhiteMode = Bus::hasWhite(type) ? aw : RGBW_MODE_MANUAL_ONLY;
- };
-
- virtual ~Bus() {} //throw the bus under the bus
-
- virtual void show() = 0;
- virtual bool canShow() { return true; }
- virtual void setStatusPixel(uint32_t c) {}
- virtual void setPixelColor(uint16_t pix, uint32_t c) = 0;
- virtual uint32_t getPixelColor(uint16_t pix) { return 0; }
- virtual void setBrightness(uint8_t b) { _bri = b; };
- virtual uint8_t getPins(uint8_t* pinArray) { return 0; }
- virtual uint16_t getLength() { return isOk() ? _len : 0; }
- virtual void setColorOrder(uint8_t co) {}
- virtual uint8_t getColorOrder() { return COL_ORDER_RGB; }
- virtual uint8_t skippedLeds() { return 0; }
- virtual uint16_t getFrequency() { return 0U; }
- virtual uint16_t getLEDCurrent() { return 0; }
- virtual uint16_t getUsedCurrent() { return 0; }
- virtual uint16_t getMaxCurrent() { return 0; }
- virtual uint8_t getNumberOfChannels() { return hasWhite(_type) + 3*hasRGB(_type) + hasCCT(_type); }
- static inline uint8_t getNumberOfChannels(uint8_t type) { return hasWhite(type) + 3*hasRGB(type) + hasCCT(type); }
- inline void setReversed(bool reversed) { _reversed = reversed; }
- inline uint16_t getStart() { return _start; }
- inline void setStart(uint16_t start) { _start = start; }
- inline uint8_t getType() { return _type; }
- inline bool isOk() { return _valid; }
- inline bool isReversed() { return _reversed; }
- inline bool isOffRefreshRequired() { return _needsRefresh; }
- bool containsPixel(uint16_t pix) { return pix >= _start && pix < _start+_len; }
-
- virtual bool hasRGB(void) { return Bus::hasRGB(_type); }
- static bool hasRGB(uint8_t type) {
- if ((type >= TYPE_WS2812_1CH && type <= TYPE_WS2812_WWA) || type == TYPE_ANALOG_1CH || type == TYPE_ANALOG_2CH || type == TYPE_ONOFF) return false;
- return true;
- }
- virtual bool hasWhite(void) { return Bus::hasWhite(_type); }
- static bool hasWhite(uint8_t type) {
- if ((type >= TYPE_WS2812_1CH && type <= TYPE_WS2812_WWA) ||
- type == TYPE_SK6812_RGBW || type == TYPE_TM1814 || type == TYPE_UCS8904 ||
- type == TYPE_FW1906 || type == TYPE_WS2805) return true; // digital types with white channel
- if (type > TYPE_ONOFF && type <= TYPE_ANALOG_5CH && type != TYPE_ANALOG_3CH) return true; // analog types with white channel
- if (type == TYPE_NET_DDP_RGBW || type == TYPE_NET_ARTNET_RGBW) return true; // network types with white channel
- return false;
- }
- virtual bool hasCCT(void) { return Bus::hasCCT(_type); }
- static bool hasCCT(uint8_t type) {
- if (type == TYPE_WS2812_2CH_X3 || type == TYPE_WS2812_WWA ||
- type == TYPE_ANALOG_2CH || type == TYPE_ANALOG_5CH ||
- type == TYPE_FW1906 || type == TYPE_WS2805 ) return true;
- return false;
- }
- static inline int16_t getCCT() { return _cct; }
- static void setCCT(int16_t cct) {
- _cct = cct;
- }
- static inline uint8_t getCCTBlend() { return _cctBlend; }
- static void setCCTBlend(uint8_t b) {
- if (b > 100) b = 100;
- _cctBlend = (b * 127) / 100;
- //compile-time limiter for hardware that can't power both white channels at max
- #ifdef WLED_MAX_CCT_BLEND
- if (_cctBlend > WLED_MAX_CCT_BLEND) _cctBlend = WLED_MAX_CCT_BLEND;
- #endif
- }
- static void calculateCCT(uint32_t c, uint8_t &ww, uint8_t &cw) {
- uint8_t cct = 0; //0 - full warm white, 255 - full cold white
- uint8_t w = byte(c >> 24);
-
- if (_cct > -1) {
- if (_cct >= 1900) cct = (_cct - 1900) >> 5;
- else if (_cct < 256) cct = _cct;
- } else {
- cct = (approximateKelvinFromRGB(c) - 1900) >> 5;
- }
-
- //0 - linear (CCT 127 = 50% warm, 50% cold), 127 - additive CCT blending (CCT 127 = 100% warm, 100% cold)
- if (cct < _cctBlend) ww = 255;
- else ww = ((255-cct) * 255) / (255 - _cctBlend);
- if ((255-cct) < _cctBlend) cw = 255;
- else cw = (cct * 255) / (255 - _cctBlend);
-
- ww = (w * ww) / 255; //brightness scaling
- cw = (w * cw) / 255;
- }
- inline void setAutoWhiteMode(uint8_t m) { if (m < 5) _autoWhiteMode = m; }
- inline uint8_t getAutoWhiteMode() { return _autoWhiteMode; }
- inline static void setGlobalAWMode(uint8_t m) { if (m < 5) _gAWM = m; else _gAWM = AW_GLOBAL_DISABLED; }
- inline static uint8_t getGlobalAWMode() { return _gAWM; }
-
- protected:
- uint8_t _type;
- uint8_t _bri;
- uint16_t _start;
- uint16_t _len;
- bool _reversed;
- bool _valid;
- bool _needsRefresh;
- uint8_t _autoWhiteMode;
- uint8_t *_data;
- // global Auto White Calculation override
- static uint8_t _gAWM;
- // _cct has the following menaings (see calculateCCT() & BusManager::setSegmentCCT()):
- // -1 means to extract approximate CCT value in K from RGB (in calcualteCCT())
- // [0,255] is the exact CCT value where 0 means warm and 255 cold
- // [1900,10060] only for color correction expressed in K (colorBalanceFromKelvin())
- static int16_t _cct;
- // _cctBlend determines WW/CW blending:
- // 0 - linear (CCT 127 => 50% warm, 50% cold)
- // 63 - semi additive/nonlinear (CCT 127 => 66% warm, 66% cold)
- // 127 - additive CCT blending (CCT 127 => 100% warm, 100% cold)
- static uint8_t _cctBlend;
-
- uint32_t autoWhiteCalc(uint32_t c);
- uint8_t *allocData(size_t size = 1);
- void freeData() { if (_data != nullptr) free(_data); _data = nullptr; }
-};
-
-
-class BusDigital : public Bus {
- public:
- BusDigital(BusConfig &bc, uint8_t nr, const ColorOrderMap &com);
- ~BusDigital() { cleanup(); }
-
- void show() override;
- bool canShow() override;
- void setBrightness(uint8_t b) override;
- void setStatusPixel(uint32_t c) override;
- void setPixelColor(uint16_t pix, uint32_t c) override;
- void setColorOrder(uint8_t colorOrder) override;
- uint32_t getPixelColor(uint16_t pix) override;
- uint8_t getColorOrder() override { return _colorOrder; }
- uint8_t getPins(uint8_t* pinArray) override;
- uint8_t skippedLeds() override { return _skip; }
- uint16_t getFrequency() override { return _frequencykHz; }
- uint8_t estimateCurrentAndLimitBri();
- uint16_t getLEDCurrent() override { return _milliAmpsPerLed; }
- uint16_t getUsedCurrent() override { return _milliAmpsTotal; }
- uint16_t getMaxCurrent() override { return _milliAmpsMax; }
- void reinit();
- void cleanup();
-
- private:
- uint8_t _skip;
- uint8_t _colorOrder;
- uint8_t _pins[2];
- uint8_t _iType;
- uint16_t _frequencykHz;
- uint8_t _milliAmpsPerLed;
- uint16_t _milliAmpsMax;
- void * _busPtr;
- const ColorOrderMap &_colorOrderMap;
-
- static uint16_t _milliAmpsTotal; // is overwitten/recalculated on each show()
-
- inline uint32_t restoreColorLossy(uint32_t c, uint8_t restoreBri) {
- if (restoreBri < 255) {
- uint8_t* chan = (uint8_t*) &c;
- for (uint_fast8_t i=0; i<4; i++) {
- uint_fast16_t val = chan[i];
- chan[i] = ((val << 8) + restoreBri) / (restoreBri + 1); //adding _bri slightly improves recovery / stops degradation on re-scale
- }
- }
- return c;
- }
-};
-
-
-class BusPwm : public Bus {
- public:
- BusPwm(BusConfig &bc);
- ~BusPwm() { cleanup(); }
-
- void setPixelColor(uint16_t pix, uint32_t c) override;
- uint32_t getPixelColor(uint16_t pix) override; //does no index check
- uint8_t getPins(uint8_t* pinArray) override;
- uint16_t getFrequency() override { return _frequency; }
- void show() override;
- void cleanup() { deallocatePins(); }
-
- private:
- uint8_t _pins[5];
- uint8_t _pwmdata[5];
- #ifdef ARDUINO_ARCH_ESP32
- uint8_t _ledcStart;
- #endif
- uint8_t _depth;
- uint16_t _frequency;
-
- void deallocatePins();
-};
-
-
-class BusOnOff : public Bus {
- public:
- BusOnOff(BusConfig &bc);
- ~BusOnOff() { cleanup(); }
-
- void setPixelColor(uint16_t pix, uint32_t c) override;
- uint32_t getPixelColor(uint16_t pix) override;
- uint8_t getPins(uint8_t* pinArray) override;
- void show() override;
- void cleanup() { pinManager.deallocatePin(_pin, PinOwner::BusOnOff); }
-
- private:
- uint8_t _pin;
- uint8_t _onoffdata;
-};
-
-
-class BusNetwork : public Bus {
- public:
- BusNetwork(BusConfig &bc);
- ~BusNetwork() { cleanup(); }
-
- bool hasRGB() override { return true; }
- bool hasWhite() override { return _rgbw; }
- bool canShow() override { return !_broadcastLock; } // this should be a return value from UDP routine if it is still sending data out
- void setPixelColor(uint16_t pix, uint32_t c) override;
- uint32_t getPixelColor(uint16_t pix) override;
- uint8_t getPins(uint8_t* pinArray) override;
- void show() override;
- void cleanup();
-
- private:
- IPAddress _client;
- uint8_t _UDPtype;
- uint8_t _UDPchannels;
- bool _rgbw;
- bool _broadcastLock;
-};
-
-
class BusManager {
public:
BusManager() {};
@@ -380,27 +392,27 @@ class BusManager {
//utility to get the approx. memory usage of a given BusConfig
static uint32_t memUsage(BusConfig &bc);
static uint32_t memUsage(unsigned channels, unsigned count, unsigned buses = 1);
- static uint16_t currentMilliamps(void) { return _milliAmpsUsed; }
- static uint16_t ablMilliampsMax(void) { return _milliAmpsMax; }
+ static uint16_t currentMilliamps() { return _milliAmpsUsed; }
+ static uint16_t ablMilliampsMax() { return _milliAmpsMax; }
static int add(BusConfig &bc);
- static void useParallelOutput(void); // workaround for inaccessible PolyBus
+ static void useParallelOutput(); // workaround for inaccessible PolyBus
//do not call this method from system context (network callback)
static void removeAll();
- static void on(void);
- static void off(void);
+ static void on();
+ static void off();
static void show();
static bool canAllShow();
static void setStatusPixel(uint32_t c);
- static void setPixelColor(uint16_t pix, uint32_t c);
+ [[gnu::hot]] static void setPixelColor(uint16_t pix, uint32_t c);
static void setBrightness(uint8_t b);
// for setSegmentCCT(), cct can only be in [-1,255] range; allowWBCorrection will convert it to K
// WARNING: setSegmentCCT() is a misleading name!!! much better would be setGlobalCCT() or just setCCT()
static void setSegmentCCT(int16_t cct, bool allowWBCorrection = false);
- static void setMilliampsMax(uint16_t max) { _milliAmpsMax = max;}
+ static inline void setMilliampsMax(uint16_t max) { _milliAmpsMax = max;}
static uint32_t getPixelColor(uint16_t pix);
static inline int16_t getSegmentCCT() { return Bus::getCCT(); }
@@ -408,10 +420,10 @@ class BusManager {
//semi-duplicate of strip.getLengthTotal() (though that just returns strip._length, calculated in finalizeInit())
static uint16_t getTotalLength();
- static uint8_t getNumBusses() { return numBusses; }
+ static inline uint8_t getNumBusses() { return numBusses; }
+ static String getLEDTypesJSONString();
- static void updateColorOrderMap(const ColorOrderMap &com) { memcpy(&colorOrderMap, &com, sizeof(ColorOrderMap)); }
- static const ColorOrderMap& getColorOrderMap() { return colorOrderMap; }
+ static inline ColorOrderMap& getColorOrderMap() { return colorOrderMap; }
private:
static uint8_t numBusses;
@@ -422,11 +434,11 @@ class BusManager {
static uint8_t _parallelOutputs;
#ifdef ESP32_DATA_IDLE_HIGH
- static void esp32RMTInvertIdle();
+ static void esp32RMTInvertIdle() ;
#endif
static uint8_t getNumVirtualBusses() {
int j = 0;
- for (int i=0; igetType() >= TYPE_NET_DDP_RGB && busses[i]->getType() < 96) j++;
+ for (int i=0; iisVirtual()) j++;
return j;
}
};
diff --git a/wled00/bus_wrapper.h b/wled00/bus_wrapper.h
index d619e85af..bf2d30c0e 100644
--- a/wled00/bus_wrapper.h
+++ b/wled00/bus_wrapper.h
@@ -84,6 +84,11 @@
#define I_8266_U1_TM1914_3 100
#define I_8266_DM_TM1914_3 101
#define I_8266_BB_TM1914_3 102
+//SM16825 (RGBCW)
+#define I_8266_U0_SM16825_5 103
+#define I_8266_U1_SM16825_5 104
+#define I_8266_DM_SM16825_5 105
+#define I_8266_BB_SM16825_5 106
/*** ESP32 Neopixel methods ***/
//RGB
@@ -130,7 +135,10 @@
#define I_32_RN_TM1914_3 96
#define I_32_I0_TM1914_3 97
#define I_32_I1_TM1914_3 98
-
+//SM16825 (RGBCW)
+#define I_32_RN_SM16825_5 107
+#define I_32_I0_SM16825_5 108
+#define I_32_I1_SM16825_5 109
//APA102
#define I_HS_DOT_3 39 //hardware SPI
@@ -213,6 +221,11 @@
#define B_8266_U1_TM1914_3 NeoPixelBusLg
#define B_8266_DM_TM1914_3 NeoPixelBusLg
#define B_8266_BB_TM1914_3 NeoPixelBusLg
+//Sm16825 (RGBWC)
+#define B_8266_U0_SM16825_5 NeoPixelBusLg
+#define B_8266_U1_SM16825_5 NeoPixelBusLg
+#define B_8266_DM_SM16825_5 NeoPixelBusLg
+#define B_8266_BB_SM16825_5 NeoPixelBusLg
#endif
/*** ESP32 Neopixel methods ***/
@@ -272,6 +285,11 @@
#define B_32_I0_TM1914_3 NeoPixelBusLg
#define B_32_I1_TM1914_3 NeoPixelBusLg
#define B_32_I1_TM1914_3P NeoPixelBusLg // parallel I2S
+//Sm16825 (RGBWC)
+#define B_32_RN_SM16825_5 NeoPixelBusLg
+#define B_32_I0_SM16825_5 NeoPixelBusLg
+#define B_32_I1_SM16825_5 NeoPixelBusLg
+#define B_32_I1_SM16825_5P NeoPixelBusLg // parallel I2S
#endif
//APA102
@@ -398,6 +416,10 @@ class PolyBus {
case I_8266_U1_TM1914_3: beginTM1914(busPtr); break;
case I_8266_DM_TM1914_3: beginTM1914(busPtr); break;
case I_8266_BB_TM1914_3: beginTM1914(busPtr); break;
+ case I_8266_U0_SM16825_5: (static_cast(busPtr))->Begin(); break;
+ case I_8266_U1_SM16825_5: (static_cast(busPtr))->Begin(); break;
+ case I_8266_DM_SM16825_5: (static_cast(busPtr))->Begin(); break;
+ case I_8266_BB_SM16825_5: (static_cast(busPtr))->Begin(); break;
#endif
#ifdef ARDUINO_ARCH_ESP32
// RMT buses
@@ -412,6 +434,7 @@ class PolyBus {
case I_32_RN_APA106_3: (static_cast(busPtr))->Begin(); break;
case I_32_RN_2805_5: (static_cast(busPtr))->Begin(); break;
case I_32_RN_TM1914_3: beginTM1914(busPtr); break;
+ case I_32_RN_SM16825_5: (static_cast(busPtr))->Begin(); break;
// I2S1 bus or parellel buses
#ifndef WLED_NO_I2S1_PIXELBUS
case I_32_I1_NEO_3: if (useParallelI2S) (static_cast(busPtr))->Begin(); else (static_cast(busPtr))->Begin(); break;
@@ -425,6 +448,7 @@ class PolyBus {
case I_32_I1_APA106_3: if (useParallelI2S) (static_cast(busPtr))->Begin(); else (static_cast(busPtr))->Begin(); break;
case I_32_I1_2805_5: if (useParallelI2S) (static_cast(busPtr))->Begin(); else (static_cast(busPtr))->Begin(); break;
case I_32_I1_TM1914_3: if (useParallelI2S) beginTM1914(busPtr); else beginTM1914(busPtr); break;
+ case I_32_I1_SM16825_5: if (useParallelI2S) (static_cast(busPtr))->Begin(); else (static_cast(busPtr))->Begin(); break;
#endif
// I2S0 bus
#ifndef WLED_NO_I2S0_PIXELBUS
@@ -439,6 +463,7 @@ class PolyBus {
case I_32_I0_APA106_3: (static_cast(busPtr))->Begin(); break;
case I_32_I0_2805_5: (static_cast(busPtr))->Begin(); break;
case I_32_I0_TM1914_3: beginTM1914(busPtr); break;
+ case I_32_I0_SM16825_5: (static_cast(busPtr))->Begin(); break;
#endif
// ESP32 can (and should, to avoid inadvertantly driving the chip select signal) specify the pins used for SPI, but only in begin()
case I_HS_DOT_3: beginDotStar(busPtr, pins[1], -1, pins[0], -1, clock_kHz); break;
@@ -510,6 +535,10 @@ class PolyBus {
case I_8266_U1_TM1914_3: busPtr = new B_8266_U1_TM1914_3(len, pins[0]); break;
case I_8266_DM_TM1914_3: busPtr = new B_8266_DM_TM1914_3(len, pins[0]); break;
case I_8266_BB_TM1914_3: busPtr = new B_8266_BB_TM1914_3(len, pins[0]); break;
+ case I_8266_U0_SM16825_5: busPtr = new B_8266_U0_SM16825_5(len, pins[0]); break;
+ case I_8266_U1_SM16825_5: busPtr = new B_8266_U1_SM16825_5(len, pins[0]); break;
+ case I_8266_DM_SM16825_5: busPtr = new B_8266_DM_SM16825_5(len, pins[0]); break;
+ case I_8266_BB_SM16825_5: busPtr = new B_8266_BB_SM16825_5(len, pins[0]); break;
#endif
#ifdef ARDUINO_ARCH_ESP32
// RMT buses
@@ -524,6 +553,7 @@ class PolyBus {
case I_32_RN_FW6_5: busPtr = new B_32_RN_FW6_5(len, pins[0], (NeoBusChannel)channel); break;
case I_32_RN_2805_5: busPtr = new B_32_RN_2805_5(len, pins[0], (NeoBusChannel)channel); break;
case I_32_RN_TM1914_3: busPtr = new B_32_RN_TM1914_3(len, pins[0], (NeoBusChannel)channel); break;
+ case I_32_RN_SM16825_5: busPtr = new B_32_RN_SM16825_5(len, pins[0], (NeoBusChannel)channel); break;
// I2S1 bus or paralell buses
#ifndef WLED_NO_I2S1_PIXELBUS
case I_32_I1_NEO_3: if (useParallelI2S) busPtr = new B_32_I1_NEO_3P(len, pins[0]); else busPtr = new B_32_I1_NEO_3(len, pins[0]); break;
@@ -537,6 +567,7 @@ class PolyBus {
case I_32_I1_FW6_5: if (useParallelI2S) busPtr = new B_32_I1_FW6_5P(len, pins[0]); else busPtr = new B_32_I1_FW6_5(len, pins[0]); break;
case I_32_I1_2805_5: if (useParallelI2S) busPtr = new B_32_I1_2805_5P(len, pins[0]); else busPtr = new B_32_I1_2805_5(len, pins[0]); break;
case I_32_I1_TM1914_3: if (useParallelI2S) busPtr = new B_32_I1_TM1914_3P(len, pins[0]); else busPtr = new B_32_I1_TM1914_3(len, pins[0]); break;
+ case I_32_I1_SM16825_5: if (useParallelI2S) busPtr = new B_32_I1_SM16825_5P(len, pins[0]); else busPtr = new B_32_I1_SM16825_5(len, pins[0]); break;
#endif
// I2S0 bus
#ifndef WLED_NO_I2S0_PIXELBUS
@@ -551,6 +582,7 @@ class PolyBus {
case I_32_I0_FW6_5: busPtr = new B_32_I0_FW6_5(len, pins[0]); break;
case I_32_I0_2805_5: busPtr = new B_32_I0_2805_5(len, pins[0]); break;
case I_32_I0_TM1914_3: busPtr = new B_32_I0_TM1914_3(len, pins[0]); break;
+ case I_32_I0_SM16825_5: busPtr = new B_32_I0_SM16825_5(len, pins[0]); break;
#endif
#endif
// for 2-wire: pins[1] is clk, pins[0] is dat. begin expects (len, clk, dat)
@@ -617,6 +649,10 @@ class PolyBus {
case I_8266_U1_TM1914_3: (static_cast(busPtr))->Show(consistent); break;
case I_8266_DM_TM1914_3: (static_cast(busPtr))->Show(consistent); break;
case I_8266_BB_TM1914_3: (static_cast(busPtr))->Show(consistent); break;
+ case I_8266_U0_SM16825_5: (static_cast(busPtr))->Show(consistent); break;
+ case I_8266_U1_SM16825_5: (static_cast(busPtr))->Show(consistent); break;
+ case I_8266_DM_SM16825_5: (static_cast(busPtr))->Show(consistent); break;
+ case I_8266_BB_SM16825_5: (static_cast(busPtr))->Show(consistent); break;
#endif
#ifdef ARDUINO_ARCH_ESP32
// RMT buses
@@ -631,6 +667,7 @@ class PolyBus {
case I_32_RN_FW6_5: (static_cast(busPtr))->Show(consistent); break;
case I_32_RN_2805_5: (static_cast(busPtr))->Show(consistent); break;
case I_32_RN_TM1914_3: (static_cast(busPtr))->Show(consistent); break;
+ case I_32_RN_SM16825_5: (static_cast(busPtr))->Show(consistent); break;
// I2S1 bus or paralell buses
#ifndef WLED_NO_I2S1_PIXELBUS
case I_32_I1_NEO_3: if (useParallelI2S) (static_cast(busPtr))->Show(consistent); else (static_cast(busPtr))->Show(consistent); break;
@@ -644,6 +681,7 @@ class PolyBus {
case I_32_I1_FW6_5: if (useParallelI2S) (static_cast(busPtr))->Show(consistent); else (static_cast(busPtr))->Show(consistent); break;
case I_32_I1_2805_5: if (useParallelI2S) (static_cast(busPtr))->Show(consistent); else (static_cast(busPtr))->Show(consistent); break;
case I_32_I1_TM1914_3: if (useParallelI2S) (static_cast(busPtr))->Show(consistent); else (static_cast(busPtr))->Show(consistent); break;
+ case I_32_I1_SM16825_5: if (useParallelI2S) (static_cast(busPtr))->Show(consistent); else (static_cast(busPtr))->Show(consistent); break;
#endif
// I2S0 bus
#ifndef WLED_NO_I2S0_PIXELBUS
@@ -658,6 +696,7 @@ class PolyBus {
case I_32_I0_FW6_5: (static_cast(busPtr))->Show(consistent); break;
case I_32_I0_2805_5: (static_cast(busPtr))->Show(consistent); break;
case I_32_I0_TM1914_3: (static_cast(busPtr))->Show(consistent); break;
+ case I_32_I0_SM16825_5: (static_cast(busPtr))->Show(consistent); break;
#endif
#endif
case I_HS_DOT_3: (static_cast(busPtr))->Show(consistent); break;
@@ -720,6 +759,10 @@ class PolyBus {
case I_8266_U1_TM1914_3: return (static_cast(busPtr))->CanShow(); break;
case I_8266_DM_TM1914_3: return (static_cast(busPtr))->CanShow(); break;
case I_8266_BB_TM1914_3: return (static_cast(busPtr))->CanShow(); break;
+ case I_8266_U0_SM16825_5: return (static_cast(busPtr))->CanShow(); break;
+ case I_8266_U1_SM16825_5: return (static_cast(busPtr))->CanShow(); break;
+ case I_8266_DM_SM16825_5: return (static_cast(busPtr))->CanShow(); break;
+ case I_8266_BB_SM16825_5: return (static_cast(busPtr))->CanShow(); break;
#endif
#ifdef ARDUINO_ARCH_ESP32
// RMT buses
@@ -734,6 +777,7 @@ class PolyBus {
case I_32_RN_FW6_5: (static_cast(busPtr))->CanShow(); break;
case I_32_RN_2805_5: (static_cast(busPtr))->CanShow(); break;
case I_32_RN_TM1914_3: (static_cast(busPtr))->CanShow(); break;
+ case I_32_RN_SM16825_5: (static_cast(busPtr))->CanShow(); break;
// I2S1 bus or paralell buses
#ifndef WLED_NO_I2S1_PIXELBUS
case I_32_I1_NEO_3: if (useParallelI2S) (static_cast(busPtr))->CanShow(); else (static_cast(busPtr))->CanShow(); break;
@@ -747,6 +791,7 @@ class PolyBus {
case I_32_I1_FW6_5: if (useParallelI2S) (static_cast(busPtr))->CanShow(); else (static_cast(busPtr))->CanShow(); break;
case I_32_I1_2805_5: if (useParallelI2S) (static_cast(busPtr))->CanShow(); else (static_cast(busPtr))->CanShow(); break;
case I_32_I1_TM1914_3: if (useParallelI2S) (static_cast(busPtr))->CanShow(); else (static_cast(busPtr))->CanShow(); break;
+ case I_32_I1_SM16825_5: if (useParallelI2S) (static_cast(busPtr))->CanShow(); else (static_cast(busPtr))->CanShow(); break;
#endif
// I2S0 bus
#ifndef WLED_NO_I2S0_PIXELBUS
@@ -761,6 +806,7 @@ class PolyBus {
case I_32_I0_FW6_5: (static_cast(busPtr))->CanShow(); break;
case I_32_I0_2805_5: (static_cast(busPtr))->CanShow(); break;
case I_32_I0_TM1914_3: (static_cast(busPtr))->CanShow(); break;
+ case I_32_I0_SM16825_5: (static_cast(busPtr))->CanShow(); break;
#endif
#endif
case I_HS_DOT_3: return (static_cast(busPtr))->CanShow(); break;
@@ -800,6 +846,7 @@ class PolyBus {
case 1: col.W = col.B; col.B = w; break; // swap W & B
case 2: col.W = col.G; col.G = w; break; // swap W & G
case 3: col.W = col.R; col.R = w; break; // swap W & R
+ case 4: std::swap(cctWW, cctCW); break; // swap WW & CW
}
switch (busType) {
@@ -849,6 +896,10 @@ class PolyBus {
case I_8266_U1_TM1914_3: (static_cast(busPtr))->SetPixelColor(pix, RgbColor(col)); break;
case I_8266_DM_TM1914_3: (static_cast(busPtr))->SetPixelColor(pix, RgbColor(col)); break;
case I_8266_BB_TM1914_3: (static_cast(busPtr))->SetPixelColor(pix, RgbColor(col)); break;
+ case I_8266_U0_SM16825_5: (static_cast(busPtr))->SetPixelColor(pix, Rgbww80Color(col.R*257, col.G*257, col.B*257, cctWW*257, cctCW*257)); break;
+ case I_8266_U1_SM16825_5: (static_cast(busPtr))->SetPixelColor(pix, Rgbww80Color(col.R*257, col.G*257, col.B*257, cctWW*257, cctCW*257)); break;
+ case I_8266_DM_SM16825_5: (static_cast(busPtr))->SetPixelColor(pix, Rgbww80Color(col.R*257, col.G*257, col.B*257, cctWW*257, cctCW*257)); break;
+ case I_8266_BB_SM16825_5: (static_cast(busPtr))->SetPixelColor(pix, Rgbww80Color(col.R*257, col.G*257, col.B*257, cctWW*257, cctCW*257)); break;
#endif
#ifdef ARDUINO_ARCH_ESP32
// RMT buses
@@ -863,6 +914,7 @@ class PolyBus {
case I_32_RN_FW6_5: (static_cast(busPtr))->SetPixelColor(pix, RgbwwColor(col.R, col.G, col.B, cctWW, cctCW)); break;
case I_32_RN_2805_5: (static_cast(busPtr))->SetPixelColor(pix, RgbwwColor(col.R, col.G, col.B, cctWW, cctCW)); break;
case I_32_RN_TM1914_3: (static_cast(busPtr))->SetPixelColor(pix, RgbColor(col)); break;
+ case I_32_RN_SM16825_5: (static_cast(busPtr))->SetPixelColor(pix, Rgbww80Color(col.R*257, col.G*257, col.B*257, cctWW*257, cctCW*257)); break;
// I2S1 bus or paralell buses
#ifndef WLED_NO_I2S1_PIXELBUS
case I_32_I1_NEO_3: if (useParallelI2S) (static_cast(busPtr))->SetPixelColor(pix, RgbColor(col)); else (static_cast(busPtr))->SetPixelColor(pix, RgbColor(col)); break;
@@ -873,9 +925,10 @@ class PolyBus {
case I_32_I1_UCS_3: if (useParallelI2S) (static_cast(busPtr))->SetPixelColor(pix, RgbColor(col)); else (static_cast(busPtr))->SetPixelColor(pix, Rgb48Color(RgbColor(col))); break;
case I_32_I1_UCS_4: if (useParallelI2S) (static_cast(busPtr))->SetPixelColor(pix, RgbColor(col)); else (static_cast(busPtr))->SetPixelColor(pix, Rgbw64Color(col)); break;
case I_32_I1_APA106_3: if (useParallelI2S) (static_cast(busPtr))->SetPixelColor(pix, RgbColor(col)); else (static_cast(busPtr))->SetPixelColor(pix, RgbColor(col)); break;
- case I_32_I1_FW6_5: if (useParallelI2S) (static_cast(busPtr))->SetPixelColor(pix, RgbColor(col)); else (static_cast(busPtr))->SetPixelColor(pix, RgbwwColor(col.R, col.G, col.B, cctWW, cctCW)); break;
- case I_32_I1_2805_5: if (useParallelI2S) (static_cast(busPtr))->SetPixelColor(pix, RgbColor(col)); else (static_cast(busPtr))->SetPixelColor(pix, RgbwwColor(col.R, col.G, col.B, cctWW, cctCW)); break;
+ case I_32_I1_FW6_5: if (useParallelI2S) (static_cast(busPtr))->SetPixelColor(pix, RgbwwColor(col.R, col.G, col.B, cctWW, cctCW)); else (static_cast(busPtr))->SetPixelColor(pix, RgbwwColor(col.R, col.G, col.B, cctWW, cctCW)); break;
+ case I_32_I1_2805_5: if (useParallelI2S) (static_cast(busPtr))->SetPixelColor(pix, RgbwwColor(col.R, col.G, col.B, cctWW, cctCW)); else (static_cast(busPtr))->SetPixelColor(pix, RgbwwColor(col.R, col.G, col.B, cctWW, cctCW)); break;
case I_32_I1_TM1914_3: if (useParallelI2S) (static_cast(busPtr))->SetPixelColor(pix, RgbColor(col)); else (static_cast(busPtr))->SetPixelColor(pix, RgbColor(col)); break;
+ case I_32_I1_SM16825_5: if (useParallelI2S) (static_cast(busPtr))->SetPixelColor(pix, Rgbww80Color(col.R*257, col.G*257, col.B*257, cctWW*257, cctCW*257)); else (static_cast(busPtr))->SetPixelColor(pix, Rgbww80Color(col.R*257, col.G*257, col.B*257, cctWW*257, cctCW*257)); break;
#endif
// I2S0 bus
#ifndef WLED_NO_I2S0_PIXELBUS
@@ -890,6 +943,7 @@ class PolyBus {
case I_32_I0_FW6_5: (static_cast(busPtr))->SetPixelColor(pix, RgbwwColor(col.R, col.G, col.B, cctWW, cctCW)); break;
case I_32_I0_2805_5: (static_cast(busPtr))->SetPixelColor(pix, RgbwwColor(col.R, col.G, col.B, cctWW, cctCW)); break;
case I_32_I0_TM1914_3: (static_cast(busPtr))->SetPixelColor(pix, RgbColor(col)); break;
+ case I_32_I0_SM16825_5: (static_cast(busPtr))->SetPixelColor(pix, Rgbww80Color(col.R*257, col.G*257, col.B*257, cctWW*257, cctCW*257)); break;
#endif
#endif
case I_HS_DOT_3: (static_cast(busPtr))->SetPixelColor(pix, RgbColor(col)); break;
@@ -953,6 +1007,10 @@ class PolyBus {
case I_8266_U1_TM1914_3: (static_cast(busPtr))->SetLuminance(b); break;
case I_8266_DM_TM1914_3: (static_cast(busPtr))->SetLuminance(b); break;
case I_8266_BB_TM1914_3: (static_cast(busPtr))->SetLuminance(b); break;
+ case I_8266_U0_SM16825_5: (static_cast(busPtr))->SetLuminance(b); break;
+ case I_8266_U1_SM16825_5: (static_cast(busPtr))->SetLuminance(b); break;
+ case I_8266_DM_SM16825_5: (static_cast(busPtr))->SetLuminance(b); break;
+ case I_8266_BB_SM16825_5: (static_cast(busPtr))->SetLuminance(b); break;
#endif
#ifdef ARDUINO_ARCH_ESP32
// RMT buses
@@ -967,6 +1025,7 @@ class PolyBus {
case I_32_RN_FW6_5: (static_cast(busPtr))->SetLuminance(b); break;
case I_32_RN_2805_5: (static_cast(busPtr))->SetLuminance(b); break;
case I_32_RN_TM1914_3: (static_cast(busPtr))->SetLuminance(b); break;
+ case I_32_RN_SM16825_5: (static_cast(busPtr))->SetLuminance(b); break;
// I2S1 bus or paralell buses
#ifndef WLED_NO_I2S1_PIXELBUS
case I_32_I1_NEO_3: if (useParallelI2S) (static_cast(busPtr))->SetLuminance(b); else (static_cast(busPtr))->SetLuminance(b); break;
@@ -980,6 +1039,7 @@ class PolyBus {
case I_32_I1_FW6_5: if (useParallelI2S) (static_cast(busPtr))->SetLuminance(b); else (static_cast(busPtr))->SetLuminance(b); break;
case I_32_I1_2805_5: if (useParallelI2S) (static_cast(busPtr))->SetLuminance(b); else (static_cast(busPtr))->SetLuminance(b); break;
case I_32_I1_TM1914_3: if (useParallelI2S) (static_cast(busPtr))->SetLuminance(b); else (static_cast(busPtr))->SetLuminance(b); break;
+ case I_32_I1_SM16825_5: if (useParallelI2S) (static_cast(busPtr))->SetLuminance(b); else (static_cast(busPtr))->SetLuminance(b); break;
#endif
// I2S0 bus
#ifndef WLED_NO_I2S0_PIXELBUS
@@ -994,6 +1054,7 @@ class PolyBus {
case I_32_I0_FW6_5: (static_cast(busPtr))->SetLuminance(b); break;
case I_32_I0_2805_5: (static_cast(busPtr))->SetLuminance(b); break;
case I_32_I0_TM1914_3: (static_cast(busPtr))->SetLuminance(b); break;
+ case I_32_I0_SM16825_5: (static_cast(busPtr))->SetLuminance(b); break;
#endif
#endif
case I_HS_DOT_3: (static_cast(busPtr))->SetLuminance(b); break;
@@ -1058,6 +1119,10 @@ class PolyBus {
case I_8266_U1_TM1914_3: col = (static_cast(busPtr))->GetPixelColor(pix); break;
case I_8266_DM_TM1914_3: col = (static_cast(busPtr))->GetPixelColor(pix); break;
case I_8266_BB_TM1914_3: col = (static_cast(busPtr))->GetPixelColor(pix); break;
+ case I_8266_U0_SM16825_5: { Rgbww80Color c = (static_cast(busPtr))->GetPixelColor(pix); col = RGBW32(c.R,c.G,c.B,max(c.WW,c.CW)); } break; // will not return original W
+ case I_8266_U1_SM16825_5: { Rgbww80Color c = (static_cast(busPtr))->GetPixelColor(pix); col = RGBW32(c.R,c.G,c.B,max(c.WW,c.CW)); } break; // will not return original W
+ case I_8266_DM_SM16825_5: { Rgbww80Color c = (static_cast(busPtr))->GetPixelColor(pix); col = RGBW32(c.R,c.G,c.B,max(c.WW,c.CW)); } break; // will not return original W
+ case I_8266_BB_SM16825_5: { Rgbww80Color c = (static_cast(busPtr))->GetPixelColor(pix); col = RGBW32(c.R,c.G,c.B,max(c.WW,c.CW)); } break; // will not return original W
#endif
#ifdef ARDUINO_ARCH_ESP32
// RMT buses
@@ -1072,6 +1137,7 @@ class PolyBus {
case I_32_RN_FW6_5: { RgbwwColor c = (static_cast(busPtr))->GetPixelColor(pix); col = RGBW32(c.R,c.G,c.B,max(c.WW,c.CW)); } break; // will not return original W
case I_32_RN_2805_5: { RgbwwColor c = (static_cast(busPtr))->GetPixelColor(pix); col = RGBW32(c.R,c.G,c.B,max(c.WW,c.CW)); } break; // will not return original W
case I_32_RN_TM1914_3: col = (static_cast(busPtr))->GetPixelColor(pix); break;
+ case I_32_RN_SM16825_5: { Rgbww80Color c = (static_cast(busPtr))->GetPixelColor(pix); col = RGBW32(c.R/257,c.G/257,c.B/257,max(c.WW,c.CW)/257); } break; // will not return original W
// I2S1 bus or paralell buses
#ifndef WLED_NO_I2S1_PIXELBUS
case I_32_I1_NEO_3: col = (useParallelI2S) ? (static_cast(busPtr))->GetPixelColor(pix) : (static_cast(busPtr))->GetPixelColor(pix); break;
@@ -1079,12 +1145,13 @@ class PolyBus {
case I_32_I1_400_3: col = (useParallelI2S) ? (static_cast(busPtr))->GetPixelColor(pix) : (static_cast(busPtr))->GetPixelColor(pix); break;
case I_32_I1_TM1_4: col = (useParallelI2S) ? (static_cast(busPtr))->GetPixelColor(pix) : (static_cast(busPtr))->GetPixelColor(pix); break;
case I_32_I1_TM2_3: col = (useParallelI2S) ? (static_cast(busPtr))->GetPixelColor(pix) : (static_cast(busPtr))->GetPixelColor(pix); break;
- case I_32_I1_UCS_3: { Rgb48Color c = (useParallelI2S) ? (static_cast(busPtr))->GetPixelColor(pix) : (static_cast(busPtr))->GetPixelColor(pix); col = RGBW32(c.R>>8,c.G>>8,c.B>>8,0); } break;
- case I_32_I1_UCS_4: { Rgbw64Color c = (useParallelI2S) ? (static_cast(busPtr))->GetPixelColor(pix) : (static_cast(busPtr))->GetPixelColor(pix); col = RGBW32(c.R>>8,c.G>>8,c.B>>8,c.W>>8); } break;
+ case I_32_I1_UCS_3: { Rgb48Color c = (useParallelI2S) ? (static_cast(busPtr))->GetPixelColor(pix) : (static_cast(busPtr))->GetPixelColor(pix); col = RGBW32(c.R/257,c.G/257,c.B/257,0); } break;
+ case I_32_I1_UCS_4: { Rgbw64Color c = (useParallelI2S) ? (static_cast