Skip to content

Instantly share code, notes, and snippets.

@kanreisa
Created June 13, 2011 07:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kanreisa/1022438 to your computer and use it in GitHub Desktop.
Save kanreisa/1022438 to your computer and use it in GitHub Desktop.
LCD example
#include <LiquidCrystal.h>
LiquidCrystal lcd(50, 49, 48, 43, 42, 41, 40);
void setup()
{
lcd.begin(16, 2);
lcd.print("Initializing...");
lcd.noAutoscroll();
/*
...
*/
delay(200);
lcd.setCursor(0, 1);
lcd.print("DONE!");
}
void loop()
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment