Created
June 17, 2017 20:56
-
-
Save giljr/b39d00ef9ac2bcfc8e03d3339e4aef72 to your computer and use it in GitHub Desktop.
See Webpage:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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