Am using an Arduino Mega 2560 that is attached to an Ethernet Shield. I am trying to connect the Arduino to Blynk and am getting the error “[132356] Connecting to blynk-cloud.com:80”. It keeps trying to connect to the cloud.
I have tried everything I could and did not succeed.
Please help.
This is my code:
#define BLYNK_PRINT Serial #include <SPI.h> #include <Ethernet.h> #include <BlynkSimpleEthernet.h>
char auth[] = “72bd8d57269e4a7889c5b08174aa8194”;
void setup()
{
Serial.begin(9600); // See the connection status in Serial Monitor
Blynk.begin(auth); // Here your Arduino connects to the Blynk Cloud.
}
void loop()
{
Blynk.run(); // All the Blynk Magic happens here…
}