Skip to content

Instantly share code, notes, and snippets.

@Ajak58a
Created May 12, 2020 18:08
Show Gist options
  • Save Ajak58a/1a890d8de94a24da6cb2716699a1574d to your computer and use it in GitHub Desktop.
Save Ajak58a/1a890d8de94a24da6cb2716699a1574d to your computer and use it in GitHub Desktop.
#include <LiquidCrystal.h>
//LiquidCrystal lcd(RS, E, D4, D5, D6, D7);
LiquidCrystal lcd(13, 11, 7, 6, 5, 4);
void setup()
{
lcd.begin(16, 2);
}
void loop()
{
lcd.clear();
lcd.setCursor(1, 0);
lcd.print("EEWORLDONLINE");
lcd.setCursor(0, 1);
lcd.print("EngineersGarage");
delay(750);
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("EngineersGarage");
lcd.setCursor(1, 1);
lcd.print("EEWORLDONLINE");
delay(750);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment