Hi there,
I used LCD sucsessfully for a while and then after an Update it stopped working.
Now I cand get something as simple as this to work:
#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[] = "xxx";
WidgetLCD lcd(1);
void setup()
{
Serial.begin(115200);
Blynk.begin(auth, "WIFI", "PASS");
while (Blynk.connect() == false) {
// Wait until connected
}
}
void loop()
{
Blynk.run();
delay(1000);
lcd.clear();
lcd.print(0, 1, millis());
}
Iβm using ESP8266 ESP-12 and latest Android App