#include <LiquidCrystal.h>
// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(14, 27, 26, 25, 33, 32);
void setup() {
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);
}
void loop() {
// Print your section name on Row-0, Col-1
lcd.setCursor(1, 0);
lcd.print("d2103");
// Print your registration on Row-1, Col-1
lcd.setCursor(1, 1);
lcd.print("12108278");
delay(5000);
}