You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I currently have several esps connected to each other by an esp in AP mode. I have an esp which transmits an artnet frame in broadcast. the problem is that the information is sent jerkily.
when I pass with a diffusion directed to a single esp it works
I would like to send an artnet frame to several hosts with different IP addresses, is this possible?
Thanks you for your help :)
The text was updated successfully, but these errors were encountered:
String hosts[3] = {"192.168.0.1", "192.168.0.2", "192.168.0.7"};
...
void loop()
{
for (i = 0; i < 3; i++) {
artnet.begin(hosts[i]);
...
artnet.setByte(1, 2); // or what ever color you like
...
artnet.write();
artnet.stop();
}
}
I tried your solution, it works but unfortunately not for my project, we use switches and the program does all the universes one after the other by cutting the DMX frame at each receiver :(
Hi!
I currently have several esps connected to each other by an esp in AP mode. I have an esp which transmits an artnet frame in broadcast. the problem is that the information is sent jerkily.
when I pass with a diffusion directed to a single esp it works
I would like to send an artnet frame to several hosts with different IP addresses, is this possible?
Thanks you for your help :)
The text was updated successfully, but these errors were encountered: