diff --git a/wled00/data/settings_sync.htm b/wled00/data/settings_sync.htm
index edfa86328..cd504248b 100644
--- a/wled00/data/settings_sync.htm
+++ b/wled00/data/settings_sync.htm
@@ -102,7 +102,7 @@ Type:
Port:
diff --git a/wled00/html_settings.h b/wled00/html_settings.h
index a85cdef54..77f3230cc 100644
--- a/wled00/html_settings.h
+++ b/wled00/html_settings.h
@@ -277,18 +277,18 @@ Make this instance discoverable: Realtime
Receive UDP realtime:
Network DMX input
Type:
Port:
Multicast:
Start universe:
Reboot required. Check out LedFx!
-Skip out-of-sequence packets:
-DMX start address:
-
DMX mode:
Custom port
+Port:
Multicast:
+Start universe:
+Reboot required. Check out LedFx!
Skip out-of-sequence packets:
DMX start address:
DMX mode:
E1.31 info
Timeout: ms
Force max brightness:
diff --git a/wled00/wled.cpp b/wled00/wled.cpp
index 11047af7b..40c3bba7e 100644
--- a/wled00/wled.cpp
+++ b/wled00/wled.cpp
@@ -537,6 +537,7 @@ void WLED::initAP(bool resetAP)
udp2Connected = notifier2Udp.begin(udpPort2);
}
e131.begin(false, e131Port, e131Universe, E131_MAX_UNIVERSE_COUNT);
+ ddp.begin(false, DDP_DEFAULT_PORT);
dnsServer.setErrorReplyCode(DNSReplyCode::NoError);
dnsServer.start(53, "*", WiFi.softAPIP());
@@ -739,6 +740,7 @@ void WLED::initInterfaces()
initBlynk(blynkApiKey, blynkHost, blynkPort);
#endif
e131.begin(e131Multicast, e131Port, e131Universe, E131_MAX_UNIVERSE_COUNT);
+ ddp.begin(false, DDP_DEFAULT_PORT);
reconnectHue();
initMqtt();
interfacesInited = true;
diff --git a/wled00/wled.h b/wled00/wled.h
index b6c409466..b520e95a8 100644
--- a/wled00/wled.h
+++ b/wled00/wled.h
@@ -8,7 +8,7 @@
*/
// version code in format yymmddb (b = daily build)
-#define VERSION 2109281
+#define VERSION 2110011
//uncomment this if you have a "my_config.h" file you'd like to use
//#define WLED_USE_MY_CONFIG
@@ -591,6 +591,7 @@ WLED_GLOBAL AsyncMqttClient* mqtt _INIT(NULL);
WLED_GLOBAL WiFiUDP notifierUdp, rgbUdp, notifier2Udp;
WLED_GLOBAL WiFiUDP ntpUdp;
WLED_GLOBAL ESPAsyncE131 e131 _INIT_N(((handleE131Packet)));
+WLED_GLOBAL ESPAsyncE131 ddp _INIT_N(((handleE131Packet)));
WLED_GLOBAL bool e131NewData _INIT(false);
// led fx library object