Guest User

Untitled

a guest
Sep 14th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. LiquidCrystal lcd(12,11,5,4,3,2);
  2. void setup()
  3. {
  4. lcd.begin(16, 2);
  5. lcd.clear();
  6. lcd.print("hello, world!");
  7. }
  8. void loop()
  9. {
  10. lcd.setCursor(0,1);
  11. lcd.print(millis()/1000);
  12. }
Add Comment
Please, Sign In to add comment