#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
lcd.begin(16, 2);
// you can now interact with the LCD, e.g.:
}
void loop() {
//lcd.setCursor(column,row); //para sa 16:2 set up
lcd.scrollDisplayLeft();
delay(150);
lcd.setCursor(0,0);
lcd.print("Pahingi po 500 pang Genshin lang please");
}