// Prepare sketch to display your section name on LCD from Row-0,
//col-1 and registration on Row-1, col1 using NodeMCU
#include <LiquidCrystal.h>
LiquidCrystal lcd(23, 22, 21, 19, 18, 5);
void setup() {
lcd.begin(16, 2);
lcd.print("D2102");
lcd.setCursor(0,1);
lcd.print("12109407");
}
void loop(){
lcd.scrollDisplayRight();
delay(200);
}