//LCD1602 and Pi Pico!
#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 10, 9, 8,7);
void setup() {
lcd.begin(16,2);
lcd.print("Hello Rifda!");
lcd.setCursor(2, 1);
lcd.print("Rifda 083");
}
void loop() {
for(int positionCounter = 0; positionCounter < 13; positionCounter++){
lcd.scrollDisplayRight();
delay(150);
}
}