Was not onliine yet error and use of Sparkfun ECG sensor, AD8232

As per the Welcome Topic… Please remember to properly format any code you post here…

Blynk%20-%20FTFC

Please read this about recommended use of the void loop() with Blynk…

http://help.blynk.cc/getting-started-library-auth-token-code-examples/blynk-basics/keep-your-void-loop-clean

And you didn’t mention if you are using a Local Server or the Cloud… your code is configured to a Local Server. Is this you code or copied from some example? If yours, are you sure your server is online? Is the App set to connect to the same server?

Blynk.begin() is a blocking command. That means there is no further code processing done until it connects to the server… thus no sensor reading.

Fix the connection and how you read the data (use a timed function, not in the main loop) and you should see some results.

1 Like