Guest User

Untitled

a guest
Nov 20th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 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.backlight();
  10. lcd.print("temp 27");
  11. lcd.print((char) 223);
  12. lcd.print(" ");
  13. lcd.print(223);
  14.  
  15. }
  16.  
  17. void loop()
  18. {
  19. }
Add Comment
Please, Sign In to add comment