rename global dmx... variables to dmxInput...

This is the first step in supporting both dmx input and dmx output on different pins.
This commit is contained in:
Arne
2023-08-14 13:28:34 +02:00
parent 97dcce0248
commit 1bc6e25355
6 changed files with 22 additions and 22 deletions

View File

@@ -357,9 +357,9 @@ void handleSettingsSet(AsyncWebServerRequest *request, byte subPage)
if (t >= -255 && t <= 255) arlsOffset = t;
#ifdef WLED_ENABLE_DMX_INPUT
dmxTransmitPin = request->arg(F("DMT")).toInt();
dmxReceivePin = request->arg(F("DMR")).toInt();
dmxEnablePin= request->arg(F("DME")).toInt();
dmxInputTransmitPin = request->arg(F("IDMT")).toInt();
dmxInputReceivePin = request->arg(F("IDMR")).toInt();
dmxInputEnablePin= request->arg(F("IDME")).toInt();
#endif
alexaEnabled = request->hasArg(F("AL"));