Can’t seem to get the LCD widget to run properly on my Samsung Android.
At times it seems to work but more often than not I cannot read the 1st line.
HELP!
Here’s my code
I tried the example code without the include files.
The code almost works but again, I do not receive the 1st line of text on my smartphone
All I get is “World”
This is weird. If I comment out the 2nd line of text it works although it does not clear the display.
If I then add the 2nd line back in, it displays everything.
I tried it on my IOS device, same result.
It fails to print the 1st line as well as any /pin/ request.
D0 works as an outout, D1 works and communicates as a digitalread
Code.
void setup()
{
Serial.begin(9600);
Blynk.begin(auth);
while (Blynk.connect() == false) // Wait until connected
lcd.clear();
delay(500);
lcd.print(3, 0, " Part");
lcd.clear();
//delay(500);
lcd.print(4, 1, “is online”);
pinMode(D0, OUTPUT);
}