#include <LiquidCrystal.h>
LiquidCrystal lcd(13,12,6,5,4,3);
void setup() {
lcd.begin(16,2);
}
void loop() {
//in 0,1 row print in 1st row and strart from (0,1,2,3,4) 4th column
lcd.setCursor(4,1);
lcd.print("Hello");
}
#include <LiquidCrystal.h>
LiquidCrystal lcd(13,12,6,5,4,3);
void setup() {
lcd.begin(16,2);
}
void loop() {
//in 0,1 row print in 1st row and strart from (0,1,2,3,4) 4th column
lcd.setCursor(4,1);
lcd.print("Hello");
}