diff --git a/wled00/e131.cpp b/wled00/e131.cpp index 4df4653c..49440931 100644 --- a/wled00/e131.cpp +++ b/wled00/e131.cpp @@ -74,7 +74,7 @@ void handleE131Packet(e131_packet_t* p, IPAddress clientIP, byte protocol){ dmxChannels = htons(p->property_value_count) -1; e131_data = p->property_values; seq = p->sequence_number; - // skip packages != config priority + // skip packages != e131 config priority if (e131Priority != 0 && p->priority != e131Priority) return; } else { //DDP realtimeIP = clientIP; diff --git a/wled00/wled.h b/wled00/wled.h index 6d8bd163..97e8a5f5 100644 --- a/wled00/wled.h +++ b/wled00/wled.h @@ -403,7 +403,7 @@ WLED_GLOBAL uint16_t e131ProxyUniverse _INIT(0); // output this #endif WLED_GLOBAL uint16_t e131Universe _INIT(1); // settings for E1.31 (sACN) protocol (only DMX_MODE_MULTIPLE_* can span over consequtive universes) WLED_GLOBAL uint16_t e131Port _INIT(5568); // DMX in port. E1.31 default is 5568, Art-Net is 6454 -WLED_GLOBAL byte e131Priority _INIT(0); // E1.31 port priority (if != 0 any data.priority < will be skipped) +WLED_GLOBAL byte e131Priority _INIT(0); // E1.31 port priority (if != 0 any data.priority != will be skipped) WLED_GLOBAL byte DMXMode _INIT(DMX_MODE_MULTIPLE_RGB); // DMX mode (s.a.) WLED_GLOBAL uint16_t DMXAddress _INIT(1); // DMX start address of fixture, a.k.a. first Channel [for E1.31 (sACN) protocol] WLED_GLOBAL uint16_t DMXSegmentSpacing _INIT(0); // Number of void/unused channels between each segments DMX channels