diff --git a/wled00/dmx_output.cpp b/wled00/dmx_output.cpp index 08a755b0..6f2b9d33 100644 --- a/wled00/dmx_output.cpp +++ b/wled00/dmx_output.cpp @@ -26,7 +26,7 @@ #endif #endif -void handleDMX() +void handleDMXOutput() { // don't act, when in DMX Proxy mode if (e131ProxyUniverse != 0) return; @@ -91,5 +91,5 @@ void initDMX() { } #else void initDMX(){} -void handleDMX() {} +void handleDMXOutput() {} #endif \ No newline at end of file diff --git a/wled00/fcn_declare.h b/wled00/fcn_declare.h index 90cea1f6..5f8bcfdc 100644 --- a/wled00/fcn_declare.h +++ b/wled00/fcn_declare.h @@ -71,7 +71,7 @@ uint8_t unGamma8(uint8_t value); //dmx.cpp void initDMX(); -void handleDMX(); +void handleDMXOutput(); //dmx_input.cpp void initDMXInput(); diff --git a/wled00/wled.cpp b/wled00/wled.cpp index 7070b082..42b648ea 100644 --- a/wled00/wled.cpp +++ b/wled00/wled.cpp @@ -121,7 +121,7 @@ void WLED::loop() #endif #ifdef WLED_ENABLE_DMX_OUTPUT - handleDMX(); + handleDMXOutput(); #endif #ifdef WLED_ENABLE_DMX_INPUT dmxInput.update();