#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);
}
void loop() {
// Set the cursor to column 0, line 1
// (note: line 1 is the second row, since counting begins with 0):
lcd.setCursor(15, 0);
//Print a message to second row of LCD
lcd.print("Wellcome");
lcd.setCursor(0, 1);
//Print a message to second row of LCD
lcd.print("to AUM");
}