#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2); // Format -> (Address,Width,Height )
void setup() {
lcd.init();
// Turn on the Backlight
lcd.backlight();
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("St 1");
lcd.setCursor(7, 0);
lcd.print("St 2");
lcd.setCursor(0,1);
lcd.print("Off");
lcd.setCursor(7,1);
lcd.print("Off");
delay(1000);
lcd.setCursor(0,1);
lcd.print("Charged");
delay(1000);
lcd.setCursor(7,1);
lcd.print("Charged");
}