Skip to content

Instantly share code, notes, and snippets.

@nilsonpessim
Last active August 29, 2015 14:05
Show Gist options
  • Save nilsonpessim/e76085a8f9ebe7b9b4fb to your computer and use it in GitHub Desktop.
Save nilsonpessim/e76085a8f9ebe7b9b4fb to your computer and use it in GitHub Desktop.
#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
lcd.begin(16, 2);
lcd.setCursor(0,0);
lcd.print("Blog Arduino");
lcd.setCursor(0,1);
lcd.print("e Tecnologia");
}
void loop() {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment