it used to work last time before shifting to blynk-cloud.com server, i tried to refresh several times, but having the same result.
I just using a simple example to test.
#define BLYNK_PRINT Serial // Comment this out to disable prints and save space
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "​​9bc1579557394381a23c3117bf4a49ad";
void setup()
{
Serial.begin(115200);
Blynk.begin(auth, "ssid", "password");
}
void loop()
{
Blynk.run();
}
@Eng,
So strange… if I see your post using my smartphone I can see several spaces before the 9 at your token. If I use my Computer the spaces are not there…
@psoro i tried to remove the first few character after the = sign, and retype again " and token, now it works. maybe that is the problem causing. But why it only show spacing in android phone?