Dear friends,
I kindly ask you to give my some advice.
I used two wemos D1 mini to perform some bridge examples together with some experiments using OTA
All works fine and I have been glad with my code.
BUT
after a small change one device will not connect anymore
I tested it with a second board and after some updates using USB connection it did not connect anymore to.
It is NOT an issue with my WIFI !!
I get results when I ping the IP address which I can see on my router.
It performs well on the same board.
if I upload an example of esp8266_webserver_electricaldevices
So it seems to be an issue using blynk
I reduced my code to the example below .
And the Bug is that the line >>Serial.println(F(“setup_2”));<< will not print out.
The device stops with the message: [1303] Connecting to xxxx << where xxxx is my wifi
It works before for sure
Do I miss something in my code ?
Is there any option to reset the wemos D1 mini to factory defaults?
#define BLYNK_PRINT Serial // Comment this out to disable prints and save space
#include <BlynkSimpleEsp8266.h>
char auth[] = "xxxxx";//Tor-Receiver-
char ssid[] = "xxxxx";
char pass[] = "xxxx";
void setup(){
delay (1000);
Serial.begin(9600);
Serial.println();
Serial.println(F("TOR_Receiver_Test")); // on the serial monito I get : TOR_Receiver_3
Serial.println(F("setup_1")); // on the serial monito I get : setup_1
Blynk.begin(auth, ssid, pass); // on the serial monito I get : [1303] Connecting to BUT nothing more
Serial.println(F("setup_2")); // <<<<<< this line will not be printed I do not understand why
}
void loop() {
Blynk.run();
}