hye this is my programming to run the system , so basically the system only run when its connected to the blynk , when i disconnect from the blynk the system cannot operate in offline. im using adruino nano + esp-01 so how can do the system can operate with blynk and without blynk , which part is wrong in my programming. thank you
Hi, I’ve removed your code, because you didn’t use triple backticks at the beginning and end to make it display correctly.
For future reference, triple backticks look like this…
```
Blynk.begin() is a blocking function, so all code execution will cease when your device is unable to connect to WiFi or the Blynk server.
The solution is to restructure your code to use the Blynk.config() and Blynk.connect() methods, but I’m pretty sure you can’t do this when using your current hardware as it’s not supported by the BlynkSimpleShieldEsp8266.h library.
So, your first step would be to use something like an ESP32 dev board to replace your Nano/ESP-01 combination.