#include <LiquidCrystal.h>
LiquidCrystal lcd(1, 2, 4, 5, 6, 7);
LiquidCrystal lcda(8, 9, 10, 11, 12, 13);
void setup() {
lcd.begin(16, 2);
lcda.begin(16, 2);
lcd.clear();
lcda.clear();
lcd.setCursor(0, 0);
lcda.setCursor(0, 0);
lcd.print("Josh Hutserson");
lcda.print("YOUORIE");
delay(1000);
}
void loop() {
}