Advertisement
Guest User

Untitled

a guest
Jan 15th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include <LiquidCrystal.h>
  2.  
  3. LiquidCrystal lcd(7, 6, 5, 4, 3, 2);
  4.  
  5. void setup()
  6. {
  7.    lcd.begin(16, 2);
  8. }
  9. void loop()
  10. {
  11.    lcd.setCursor(0, 0);
  12.    lcd.print("kokot");
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement