#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 13, A0, A1, A2, A3);//LCD RS-12,En-11,D4-5,D5- 4,D6-3,D7-2,R/W- ground
void setup()
{
lcd.begin(16, 2);// set up the LCD’s number of columns and rows:
lcd.print(“EMERGING”);// Print a message to the LCD.
}
void loop()
{
lcd.setCursor(0, 1);
lcd.print(“EMERGING”);
}