Mini changes
This commit is contained in:
@@ -3451,7 +3451,7 @@ uint16_t mode_drip(void)
|
|||||||
|
|
||||||
return FRAMETIME;
|
return FRAMETIME;
|
||||||
}
|
}
|
||||||
static const char _data_FX_MODE_DRIP[] PROGMEM = "Drip@Gravity,# of drips;!,!;!;1.5d;m12=1"; //bar WLEDMM 1.5d
|
static const char _data_FX_MODE_DRIP[] PROGMEM = "Drip@Gravity,# of drips,Fall ratio;!,!;!;1.5d;m12=1"; //bar WLEDMM 1.5d
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
@@ -1867,7 +1867,7 @@ void WS2812FX::deserializeMap(uint8_t n) {
|
|||||||
#endif
|
#endif
|
||||||
customMappingSize = map.size();
|
customMappingSize = map.size();
|
||||||
customMappingTable = new uint16_t[customMappingSize];
|
customMappingTable = new uint16_t[customMappingSize];
|
||||||
for (uint16_t i=0; i<map.size(); i++) {
|
for (uint16_t i=0; i<MIN(map.size(),customMappingSize); i++) {
|
||||||
customMappingTable[i] = (uint16_t) map[i];
|
customMappingTable[i] = (uint16_t) map[i];
|
||||||
}
|
}
|
||||||
setUpMatrix(false); //WLEDMM: apply logical to physical mapping after the ledmap
|
setUpMatrix(false); //WLEDMM: apply logical to physical mapping after the ledmap
|
||||||
|
|||||||
@@ -667,7 +667,7 @@ function populateInfo(i)
|
|||||||
if (i.ver.includes("0.14.0.")) vcn = "Lupo"; // check for MM versioning scheme
|
if (i.ver.includes("0.14.0.")) vcn = "Lupo"; // check for MM versioning scheme
|
||||||
cn += `v${i.ver} <i>"${vcn}"</i><p>(WLEDMM_${i.ver} ${i.rel}.bin)</p><p><em>build ${i.vid}</em></p><table>
|
cn += `v${i.ver} <i>"${vcn}"</i><p>(WLEDMM_${i.ver} ${i.rel}.bin)</p><p><em>build ${i.vid}</em></p><table>
|
||||||
${urows}
|
${urows}
|
||||||
${urows===""?'':'<tr><td colspan=2><hr style="height:1px;border-width:0;color:gray;background-color:gray"></td></tr>'}
|
${urows===""?'':'<tr><td colspan=2><hr style="height:1px;border-width:0;color:SeaGreen;background-color:Seagreen"></td></tr>'}
|
||||||
${i.opt&0x100?inforow("Debug","<button class=\"btn btn-xs\" onclick=\"requestJson({'debug':"+(i.opt&0x0080?"false":"true")+"});\"><i class=\"icons "+(i.opt&0x0080?"on":"off")+"\"></i></button>"):''}
|
${i.opt&0x100?inforow("Debug","<button class=\"btn btn-xs\" onclick=\"requestJson({'debug':"+(i.opt&0x0080?"false":"true")+"});\"><i class=\"icons "+(i.opt&0x0080?"on":"off")+"\"></i></button>"):''}
|
||||||
${inforow("Build",i.vid)}
|
${inforow("Build",i.vid)}
|
||||||
${inforow("Signal strength",i.wifi.signal +"% ("+ i.wifi.rssi, " dBm)")}
|
${inforow("Signal strength",i.wifi.signal +"% ("+ i.wifi.rssi, " dBm)")}
|
||||||
|
|||||||
3997
wled00/html_ui.h
3997
wled00/html_ui.h
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user