Skip to content

Instantly share code, notes, and snippets.

@giljr
Created June 17, 2017 20:56
Show Gist options
  • Save giljr/b39d00ef9ac2bcfc8e03d3339e4aef72 to your computer and use it in GitHub Desktop.
Save giljr/b39d00ef9ac2bcfc8e03d3339e4aef72 to your computer and use it in GitHub Desktop.
See Webpage:
// include the library code:
#include <LiquidCrystal.h>
// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.print("hello, world!");
}
void loop() {
// Turn off the display:
lcd.noDisplay();
delay(500);
// Turn on the display:
lcd.display();
delay(500);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment