# library used for working with LCDs
include <LiquidCrystal.h>
#// intializing lcd name and GP pins
LiquidCrystal lcd(12, 11, 10, 9, 8, 7);
void setup() {
lcd.begin(16, 2);#// Initialize the LCD with 16 columns and 2 rows
lcd.print("Raspberry");
lcd.setCursor(2, 1);#//Set the cursor to the third column of the second line
lcd.print("> Pi Pico <");
delay(2000);#//to delay for 2 seconds
}
void loop() #//Used to display the set of codes again and again
{
lcd.begin(16, 2);
lcd.print("Microcontroller");
lcd.setCursor(2, 1);
lcd.print("> Assignment <");
delay(2000);
lcd.begin(16, 2);
lcd.print("LCD diaplay");
lcd.setCursor(2, 1);
lcd.print("> Using pico <");
delay(2000);
}