diff --git a/wled00/cfg.cpp b/wled00/cfg.cpp
index 1105077ca..d3a8a0c6d 100644
--- a/wled00/cfg.cpp
+++ b/wled00/cfg.cpp
@@ -526,7 +526,7 @@ bool deserializeConfig(JsonObject doc, bool fromFS) {
#ifdef WLED_ENABLE_DMX_INPUT
CJSON(dmxInputTransmitPin, if_live_dmx[F("inputRxPin")]);
CJSON(dmxInputReceivePin, if_live_dmx[F("inputTxPin")]);
- CJSON(dmxInputEnablePin, if_live_dmx[F("enablePin")]);
+ CJSON(dmxInputEnablePin, if_live_dmx[F("inputEnablePin")]);
#endif
CJSON(arlsForceMaxBri, if_live[F("maxbri")]);
@@ -1009,9 +1009,9 @@ void serializeConfig() {
if_live_dmx[F("dss")] = DMXSegmentSpacing;
if_live_dmx["mode"] = DMXMode;
#ifdef WLED_ENABLE_DMX_INPUT
- if_live_dmx[F("rxPin")] = dmxInputTransmitPin;
- if_live_dmx[F("txPin")] = dmxInputReceivePin;
- if_live_dmx[F("enablePin")] = dmxInputEnablePin;
+ if_live_dmx[F("inputRxPin")] = dmxInputTransmitPin;
+ if_live_dmx[F("inputTxPin")] = dmxInputReceivePin;
+ if_live_dmx[F("inputEnablePin")] = dmxInputEnablePin;
#endif
if_live[F("timeout")] = realtimeTimeoutMs / 100;
diff --git a/wled00/data/settings_sync.htm b/wled00/data/settings_sync.htm
index 34b9fc6cd..16bd3f7f6 100644
--- a/wled00/data/settings_sync.htm
+++ b/wled00/data/settings_sync.htm
@@ -151,6 +151,18 @@ Timeout: ms
Force max brightness:
Disable realtime gamma correction:
Realtime LED offset:
+