Advertisement
RuiViana

Testa LCD_I2C

Nov 16th, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. #include <Wire.h>
  2. #include <LiquidCrystal_I2C.h>
  3.  
  4. LiquidCrystal_I2C lcd(0x3F,16,2); // set the LCD address to 0x27 for a 16 chars and 2 line display
  5.  
  6. void setup()
  7. {
  8. // lcd.init(); // initialize the lcd
  9. lcd.begin();
  10. // Print a message to the LCD.
  11. lcd.backlight();
  12. lcd.print("OBRIGADO");
  13. }
  14.  
  15. void loop()
  16. {
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement