mirror of
https://github.com/wled/WLED.git
synced 2025-04-19 12:27:17 +00:00
rename handleDMX() handleDMXOutput()
This commit is contained in:
parent
fa80c62b28
commit
11b48bc374
@ -12,7 +12,7 @@
|
||||
|
||||
#ifdef WLED_ENABLE_DMX_OUTPUT
|
||||
|
||||
void handleDMX()
|
||||
void handleDMXOutput()
|
||||
{
|
||||
// don't act, when in DMX Proxy mode
|
||||
if (e131ProxyUniverse != 0) return;
|
||||
@ -77,5 +77,5 @@ void initDMX() {
|
||||
}
|
||||
#else
|
||||
void initDMX(){}
|
||||
void handleDMX() {}
|
||||
void handleDMXOutput() {}
|
||||
#endif
|
||||
|
@ -185,14 +185,11 @@ void setRandomColor(byte* rgb);
|
||||
|
||||
//dmx.cpp
|
||||
void initDMX();
|
||||
void handleDMX();
|
||||
<<<<<<< HEAD
|
||||
=======
|
||||
void handleDMXOutput();
|
||||
|
||||
//dmx_input.cpp
|
||||
void initDMXInput();
|
||||
void handleDMXInput();
|
||||
>>>>>>> b4bbf0a5 (Extract dmx_input from dmx.cpp into dmx_input.cpp.)
|
||||
|
||||
//e131.cpp
|
||||
void handleE131Packet(e131_packet_t* p, IPAddress clientIP, byte protocol);
|
||||
|
@ -65,7 +65,7 @@ void WLED::loop()
|
||||
handleNotifications();
|
||||
handleTransitions();
|
||||
#ifdef WLED_ENABLE_DMX_OUTPUT
|
||||
handleDMX();
|
||||
handleDMXOutput();
|
||||
#endif
|
||||
#ifdef WLED_ENABLE_DMX_INPUT
|
||||
dmxInput.update();
|
||||
|
Loading…
x
Reference in New Issue
Block a user