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:
@@ -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"));
|
||||
|
||||
Reference in New Issue
Block a user