#include <LiquidCrystal.h>
LiquidCrystal lcd(21, 19, 5, 4 , 2, 15);
//rs enable
void setup() {
// Set up the number of columns and rows on the LCD
lcd.begin(16, 2);
// Print a welcome message
lcd.print("Arsam");
}
void loop() {
// Delay for a while
delay(1000);
}
///