//#include <Wire.h>
#include <LiquidCrystal.h>
// Define the pin where the potentiometer is connected
//#define POT_PIN A0 // GP26 corresponds to ADC0
// Initialize the LCD, set the I2C address to 0x27, and the dimensions to 16 columns by 2 rows
LiquidCrystal lcd(28, 27, 22, 6, 21, 20);
void setup() {
lcd.begin(16, 2);
lcd.print("WHAT'S UP!!");
Serial1.begin(9600);
Serial1.print("123");
}
void loop() {
lcd.setCursor(0, 1);
//lcd.print("");
}