WLED 0.15.0-b4 release

- LED settings update (limit to available outputs)
- minor fixes
This commit is contained in:
Blaz Kristan
2024-06-29 16:36:27 +02:00
parent f0e4dd90ee
commit 7b248c8fb2
15 changed files with 2021 additions and 1905 deletions

View File

@@ -356,7 +356,9 @@ void getSettingsJS(byte subPage, char* dest)
oappend(itoa(MAX_LEDS_PER_BUS,nS,10)); oappend(",");
oappend(itoa(MAX_LED_MEMORY,nS,10)); oappend(",");
oappend(itoa(MAX_LEDS,nS,10)); oappend(",");
oappend(itoa(WLED_MAX_COLOR_ORDER_MAPPINGS,nS,10));
oappend(itoa(WLED_MAX_COLOR_ORDER_MAPPINGS,nS,10)); oappend(",");
oappend(itoa(WLED_MAX_DIGITAL_CHANNELS,nS,10)); oappend(",");
oappend(itoa(WLED_MAX_ANALOG_CHANNELS,nS,10));
oappend(SET_F(");"));
sappend('c',SET_F("MS"),autoSegments);