Skip to content

Instantly share code, notes, and snippets.

@michaelsarduino
Created July 9, 2017 14:25
Show Gist options
  • Save michaelsarduino/a55ead229f88a048f6135ff95ceaf650 to your computer and use it in GitHub Desktop.
Save michaelsarduino/a55ead229f88a048f6135ff95ceaf650 to your computer and use it in GitHub Desktop.
#include <Wire.h>
#include <LCD.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x3F, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE);
void setup()
{
delay(1000);
lcd.begin(16, 2);
lcd.clear();
lcd.setCursor(0,0),
lcd.print("michaelsarduino");
}
void loop()
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment