#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
lcd.begin(16, 2); // 16 columns × 2 rows
lcd.clear();
lcd.setCursor(0, 0); // Top row
lcd.print(" Vandy "); // ← Change this to any name you want!
lcd.setCursor(0, 1); // Bottom row (optional)
lcd.print("Wokwi Simulator");
}
void loop() {
// Name stays on screen forever
// (No code needed for potentiometer - it works automatically)
}