#include<Wire.h>
#include<LiquidCrystal.h>
LiquidCrystal lcd(13,14,12, 11, 10, 9,);
void setup() {
lcd.begin(20, 4);
lcd.print("Hello World!");
lcd.setCursor(2, 1);
lcd.print("> Pi Pico <");
}
void loop() {
delay(1); // Adding a delay() here speeds up the simulation
}