I use an Arduino Mega 2560 with a WiFi shield. I have a critical pressure controller that is connected to analog(0). I created an ISR (Int4) triggering on timer overflow at 1ms and want to read the analog value in the ISR because my loop sometimes takes to long with other work to turn the pump off and then the pressure goes to high.
If the analogRead is in the loop Blynk works fine. I move it to inside the ISR and Blynk does not start up. I disable Blynk and the pressure controls like a charm. I use this in my lab setup to calibrate chemical equipment and Blynk is really very useful to keep an eye on long running calibrations.
I tried other INT’s but the result is the same. Anything in Blynk that hangs the system up under these conditions?