Blynk and Timers

Does anyone know how many timers I can add in the void loop function without causing problems?

timer.run(); 
timer_trend.run(); 
Blynk.run(); 
timer_dht_hum.run(); 
timer_dht_temp.run()

Why do you want to put 4 timers in the loop ? only one is needed :scream:
you can have up to 16 timers for each timer object !

1 Like

Pete.

3 Likes

Thank you. Not sure why I thought there was only one timer per object using the Blynk timer. :thinking:

1 Like