/*Prepare sketch to display your section name on LCD from Row-0,
col-1 and registration on Row-1, col1 using NodeMCU8*/
#include <LiquidCrystal.h>
LiquidCrystal lcd(25,27,4,2,12,13);
void setup() {
lcd.begin(16,2);
}
void loop() {
lcd.setCursor(1,0);
lcd.print("DE110");
lcd.setCursor(1,1);
lcd.print("12103407");
delay(1000);
lcd.autoscroll();
}