weinerm21

Untitled

Jun 20th, 2018
64
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);
  5.  
  6. void setup()
  7. {
  8. // put your setup code here, to run once:
  9. lcd.init();
  10.  
  11. lcd.setBacklight(("uint8_1"));
  12.  
  13. lcd.print("Hello, world!");
  14.  
  15. lcd.setCursor(0,1);
  16.  
  17. lcd.print("Misha");
  18. }
  19.  
  20. void loop()
  21. {
  22. // put your main code here, to run repeatedly:
  23.  
  24. }
Add Comment
Please, Sign In to add comment