rename handleDMX() handleDMXOutput()

This commit is contained in:
Arne
2023-08-23 14:52:57 +02:00
parent 038d41f849
commit 6efd7457e0
3 changed files with 4 additions and 4 deletions

View File

@@ -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

View File

@@ -71,7 +71,7 @@ uint8_t unGamma8(uint8_t value);
//dmx.cpp
void initDMX();
void handleDMX();
void handleDMXOutput();
//dmx_input.cpp
void initDMXInput();

View File

@@ -121,7 +121,7 @@ void WLED::loop()
#endif
#ifdef WLED_ENABLE_DMX_OUTPUT
handleDMX();
handleDMXOutput();
#endif
#ifdef WLED_ENABLE_DMX_INPUT
dmxInput.update();