#include <LiquidCrystal.h>
// const int rs = 25, en = 33, d4 = 12, d5 = 14, d6 = 27, d7 = 26;
LiquidCrystal lcd(25, 33, 12, 14, 27, 26);
void setup() {
lcd.begin(16, 2);
lcd.print("Hey there");
}
void loop() {
lcd.setCursor(0, 1);
lcd.print("Whats up!");
}
//Question
//Implementation
//Learning Outcome