#include<SoftwareSerial.h>
#include<liquidCrystal.h>
const int rs=6,en=7,d4=5,d5=4,d6=3,d7=2;
LquidCrystal lcd(rs,en,d4,d5,d6 d7);
void setup(){
//set up the lcd number of columns and rows:
//print a message to the LCD
lcd. begin(16,2);
lcd. print("MREM") ;
lcd. setCursor(0,1);
lcd. print("PROJECT TRAINING");
delay (2000);
lcd. clear();
}
// put your setu pop code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
}