#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 10, 9, 8, 7);
void setup() {
lcd.begin(16, 2);
// you can now interact with the LCD, e.g.:
lcd.print("Hello Woffsf!");
lcd.setCursor(0, 1);
lcd.print("newline");
}
void loop() {
// ...
/*char alpha[] = "abcdefghijklmnopqrstuvwxyz";
while(true){
for(char c : alpha){
delay(1000);
lcd.write(c);
}
}*/
}