diff --git a/wled00/data/dmxmap.htm b/wled00/data/dmxmap.htm index 23e056cb..25953b0e 100644 --- a/wled00/data/dmxmap.htm +++ b/wled00/data/dmxmap.htm @@ -16,11 +16,7 @@ } DMXMap = ""; for (i=0;i<512;i++) { - isstart = ""; - if ((i+1) % 10 == 0) { - isstart="S" - } - DMXMap += "
" + String(i+1) + "
" + dmxlabels[dmxchans[i]] + "
"; + DMXMap += "
" + String(i+1) + "
" + dmxlabels[dmxchans[i]] + "
"; } document.getElementById("map").innerHTML = DMXMap; } diff --git a/wled00/html_other.h b/wled00/html_other.h index e0bf4217..ef9f70b4 100644 --- a/wled00/html_other.h +++ b/wled00/html_other.h @@ -24,7 +24,7 @@ function B(){window.history.back()}function RS(){window.location="/settings"}fun const char PAGE_dmxmap[] PROGMEM = R"=====( DMX Map
...
)=====";