#include <LiquidCrystal.h>
LiquidCrystal a (12,11,10,9,8,7);
void setup() {
a.begin(16,2);
}
void loop() {
a.setCursor(0,0);
a.print("help me");
a.setCursor(7,1);
int o = 0;
a.print(o);
delay(2500);
a.clear();
delay(1000);
}
#include <LiquidCrystal.h>
LiquidCrystal a (12,11,10,9,8,7);
void setup() {
a.begin(16,2);
}
void loop() {
a.setCursor(0,0);
a.print("help me");
a.setCursor(7,1);
int o = 0;
a.print(o);
delay(2500);
a.clear();
delay(1000);
}