Hi.
I live in Brazil, and my blynk project is not going on line
It’s not a problem with the Blynk Cloud servers…
Probably a problem with your hardware or code, but as you’ve not shared any details it’s difficult to say which.
Pete.
here is my code
/* Comment this out to disable prints and save space */
#define BLYNK_PRINT Serial
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266_SSL.h>
// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "GvFse_Exxb77cQUpeQT4G-JN8WRCTXaW";
// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "xxxxxx";
char pass[] = "xxxxxxxx";
void setup()
{
// Debug console
Serial.begin(9600);
Blynk.begin(auth, ssid, pass);
}
void loop()
{
Blynk.run();
}
the app don’t go on-line
Please edit your post to add triple backticks at the beginning and end of your code, so that it displays correctly.
Triple backticks look like this:
```
Pete.