#include <LiquidCrystal.h>
// C++ code
//
LiquidCrystal lcd(18,5,17,16,4,0,2);
void setup() {
lcd.begin(16, 2);
lcd.setCursor(0,0);
// you can now interact with the LCD, e.g.:
lcd.print("I Love STUST");
lcd.setCursor(0,1);
lcd.print("mg4a01249");
}
void loop() {
// ...
}