Skip to content

Instantly share code, notes, and snippets.

@dwaard
Created December 11, 2018 13:09
Show Gist options
  • Save dwaard/de899764f4207f89279a6a78b4abc660 to your computer and use it in GitHub Desktop.
Save dwaard/de899764f4207f89279a6a78b4abc660 to your computer and use it in GitHub Desktop.
// include the library code:
#include <LiquidCrystal.h>
const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
void setup() {
lcd.begin(16, 2);
lcd.print("program me daddy");
lcd.setCursor(0,1);
lcd.print("UwU");
}
void loop() {
// Nothing TODO... yet
}
@Lucky-Loek
Copy link

🥇

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment