#include <LiquidCrystal.h>
#define RED 13
#define GREEN 12
LiquidCrystal lcd(12, 11, 10, 9, 8, 7);
void showSplashScreen() {
lcd.setCursor(0, 1);
lcd.print("2347111");
delay(2000);
lcd.clear();
}
void setup() {
// put your setup code here, to run once:
pinMode(GREEN, OUTPUT);
pinMode(RED, OUTPUT);
// lcd.begin(16, 2);
showSplashScreen();
lcd.setCursor(2, 0);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(GREEN, HIGH);
digitalWrite(RED, HIGH);
}