Fix invert of tx and rx pins

This commit is contained in:
Will Tatam
2023-04-05 13:19:29 +01:00
parent d64cbc9059
commit d64cefb2cb
2 changed files with 4 additions and 4 deletions

View File

@@ -315,8 +315,8 @@ void handleSettingsSet(AsyncWebServerRequest *request, byte subPage)
if (t >= -255 && t <= 255) arlsOffset = t;
#ifdef WLED_ENABLE_DMX_INPUT
dmxTransmitPin = request->arg(F("DMR")).toInt();
dmxReceivePin = request->arg(F("DMT")).toInt();
dmxTransmitPin = request->arg(F("DMT")).toInt();
dmxReceivePin = request->arg(F("DMR")).toInt();
dmxEnablePin= request->arg(F("DME")).toInt();
#endif