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 af290957..a02c2f55 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
...
)====="; diff --git a/wled00/src/dependencies/e131/ESPAsyncE131.cpp b/wled00/src/dependencies/e131/ESPAsyncE131.cpp index 8ba97106..b4065b06 100644 --- a/wled00/src/dependencies/e131/ESPAsyncE131.cpp +++ b/wled00/src/dependencies/e131/ESPAsyncE131.cpp @@ -101,7 +101,7 @@ void ESPAsyncE131::parsePacket(AsyncUDPPacket _packet) { bool error = false; uint8_t protocol = P_E131; - sbuff = reinterpret_cast(_packet.data()); + e131_packet_t *sbuff = reinterpret_cast(_packet.data()); //E1.31 packet identifier ("ACS-E1.17") if (memcmp(sbuff->acn_id, ESPAsyncE131::ACN_ID, sizeof(sbuff->acn_id))) diff --git a/wled00/src/dependencies/e131/ESPAsyncE131.h b/wled00/src/dependencies/e131/ESPAsyncE131.h index e9ce5c12..4cf522d8 100644 --- a/wled00/src/dependencies/e131/ESPAsyncE131.h +++ b/wled00/src/dependencies/e131/ESPAsyncE131.h @@ -163,7 +163,6 @@ class ESPAsyncE131 { static const uint32_t VECTOR_FRAME = 2; static const uint8_t VECTOR_DMP = 2; - e131_packet_t *sbuff; // Pointer to scratch packet buffer AsyncUDP udp; // AsyncUDP // Internal Initializers diff --git a/wled00/xml.cpp b/wled00/xml.cpp index 5e42389b..7e51e060 100644 --- a/wled00/xml.cpp +++ b/wled00/xml.cpp @@ -190,7 +190,7 @@ void extractPin(JsonObject &obj, const char *key) { } } -// oappens used pins by recursively scanning JsonObject +// oappend used pins by scanning JsonObject (1 level deep) void fillUMPins(JsonObject &mods) { for (JsonPair kv : mods) {