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 think I have spotted an issue in ArtnetSender.h
What happens if millis(); overflow and now is 0 and this->last_send_times.find(dest) = 4,294,967,000 ?
@audiostrom Sorry for not getting back to you sooner. This issue is one of several known problems. I have not had time to address it and have not yet been able to fix it, but I will try to do so later.
For example, in my other library, I'm using PollingTImer library like this.
I think I have spotted an issue in ArtnetSender.h
What happens if millis(); overflow and now is 0 and this->last_send_times.find(dest) = 4,294,967,000 ?
How about (not tested)
if ((now - this->last_send_times[dest]) >= DEFAULT_INTERVAL_MS)
The text was updated successfully, but these errors were encountered: