Serial monitor constantly saying “Connecting to blynk-cloud.com:8442”
I’ve tryed restarting my router, using the manual example and changing ethernet cables.
My arduino ethernet shield is connected into a homeplug via a Ethernet cable.
It does not even get as far as checking my auth code.
I’ve had to take out all links but the important ones due to the fact that I am a new user.
My sketch is:
/**************************************************************
- Blynk is a platform with iOS and Android apps to control
- Arduino, Raspberry Pi and the likes over the Internet.
- You can easily build graphic interfaces for all your
- projects by simply dragging and dropping widgets.
- Downloads, docs, tutorials:
- Blynk community:
- Social networks:
-
*
- Blynk library is licensed under MIT license
- This example code is in public domain.
- This example shows how to configure static IP with Ethernet.
- Be sure to check ordinary Ethernet example first!!!
- NOTE: Pins 10, 11, 12 and 13 are reserved for Ethernet module.
-
DON'T use them in your sketch directly!
- WARNING: If you have an SD card, you may need to disable it
-
by setting pin 4 to HIGH. Read more here:
**************************************************************/
#define BLYNK_PRINT Serial // Comment this out to disable prints and save space
#include <SPI.h>
#include <Ethernet.h>
#include <BlynkSimpleEthernet.h>
// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = “CENSORED”;
IPAddress server_ip (46, 101, 143, 255);
// Mac address should be different for each device in your LAN
byte arduino_mac[] = { 0xDE, 0xED, 0xBA, 0xFE, 0xFE, 0xED };
IPAddress arduino_ip ( 192, 168, 1, 120);
IPAddress dns_ip ( 192, 168, 1, 254);
IPAddress gateway_ip ( 192, 168, 1, 254);
IPAddress subnet_mask(255, 255, 255, 0);
void setup()
{
Serial.begin(9600);
//Blynk.begin(auth, server_ip, 8442, arduino_ip, dns_ip, gateway_ip, subnet_mask, arduino_mac);
// Or like this:
Blynk.begin(auth, “blynk-cloud.com”, 8442, arduino_ip, dns_ip, gateway_ip, subnet_mask, arduino_mac);
}
void loop()
{
Blynk.run();
}
Thanks for reading!
- DejaVu