mirror of
https://github.com/wled/WLED.git
synced 2025-07-13 13:56:35 +00:00
Send ArtnetPollReply for Art-Net proxy universe
This commit is contained in:
parent
ba9ce4adf2
commit
c3787af29d
@ -346,7 +346,6 @@ void handleArtnetPollReply(IPAddress ipAddress) {
|
|||||||
|
|
||||||
switch (DMXMode) {
|
switch (DMXMode) {
|
||||||
case DMX_MODE_DISABLED:
|
case DMX_MODE_DISABLED:
|
||||||
return; // nothing to do
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case DMX_MODE_SINGLE_RGB:
|
case DMX_MODE_SINGLE_RGB:
|
||||||
@ -391,9 +390,17 @@ void handleArtnetPollReply(IPAddress ipAddress) {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (uint16_t i = startUniverse; i <= endUniverse; ++i) {
|
if (DMXMode != DMX_MODE_DISABLED) {
|
||||||
sendArtnetPollReply(&artnetPollReply, ipAddress, i);
|
for (uint16_t i = startUniverse; i <= endUniverse; ++i) {
|
||||||
|
sendArtnetPollReply(&artnetPollReply, ipAddress, i);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef WLED_ENABLE_DMX
|
||||||
|
if (e131ProxyUniverse > 0 && (DMXMode == DMX_MODE_DISABLED || (e131ProxyUniverse < startUniverse || e131ProxyUniverse > endUniverse))) {
|
||||||
|
sendArtnetPollReply(&artnetPollReply, ipAddress, e131ProxyUniverse);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void prepareArtnetPollReply(ArtPollReply *reply) {
|
void prepareArtnetPollReply(ArtPollReply *reply) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user