#include <Arduino.h>
#include <LiquidCrystal.h>
// RS, E, D4, D5, D6, D7
LiquidCrystal lcd(2, 3, 4, 5, 6, 7);
void setup() {
lcd.begin(16, 2);
lcd.setCursor(0, 0);
lcd.print("SMART DOOR");
lcd.setCursor(0, 1);
lcd.print("LOCK SYSTEM");
}
void loop() {
}