#include <Adafruit_LiquidCrystal.h>
Adafruit_LiquidCrystal lcd(0);
void setup() {
// put your setup code here, to run once:
lcd.begin(16,2);
lcd.setCursor(0,0);
lcd.print("AUTOMATIC GATE");
lcd.setCursor(0,1);
lcd.print("BIET COLLAGE DVG ");
}
void loop() {
// put your main code here, to run repeatedly:
}