#include <LiquidCrystal.h>
// pin constants for the parallel LCD
// RS = 13, EN = 11, D4 = 8, D5 = 7, D6 = 6, D7 = 5;
LiquidCrystal lcd(13, 11, 8, 7, 6, 5);
void setup() {
Serial1.begin(115200);
Serial1.println("Hello, Raspberry Pi Pico W!");
lcd.begin(16, 2);
lcd.setCursor(5, 0);
lcd.print("Hello");
lcd.setCursor(5, 1);
lcd.print("World");
}
void loop() {
delay(1); // this speeds up the simulation
}