Dear Blynk Team
I have issue on Blynk 2.0 LCD display text not stable when I close and open again the Blynk2.0 application Blynk display no more showing,
I use Blynk legency no issue ever everything is working fine in Blynk legency,
I attached here the code video I can’t share because not supported
I hope you hear me soon
Best Regards
Maaz
// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "Testing 2.0";
char pass[] = "gfgggfvvvc";
WidgetLCD lcd(V4);
BLYNK_WRITE(V5)
{
if ( param.asInt () == 1)
{
digitalWrite(17,LOW);
lcd.clear();
}
else
{
digitalWrite(17,HIGH);
lcd.print (4,1,"SELECT OPEN");
}
}
BLYNK_WRITE(V2)
{
if ( param.asInt () == 1)
{
digitalWrite(21,LOW);
lcd.clear();
}
else
{
digitalWrite(21,HIGH);
lcd.print (4,1,"SELECT AUTO");
}
}
BLYNK_WRITE(V0)
{
if ( param.asInt () == 1)
{
digitalWrite(18,LOW);
lcd.clear();
}
else
{
digitalWrite(18,HIGH);
lcd.print (4,1,"SELECT LOCK");
}
}
BLYNK_WRITE(V1)
{
if ( param.asInt () == 1)
{
digitalWrite(23,LOW);
lcd.clear();
}
else
{
digitalWrite(23,HIGH);
lcd.print (4,1,"SELECT EXIT");
}
}
void setup()
{
pinMode (18,OUTPUT);
pinMode (19,OUTPUT);
pinMode (21,OUTPUT);
pinMode (17,OUTPUT);
// Debug console
Serial.begin(9600);
Blynk.begin(auth, ssid, pass);
}
void loop()
{
Blynk.run();
}