mongerr

Pacman LCD Test

Jun 28th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. /*
  2. * Rachel Monger
  3. * LCD Test
  4. * 6/20/17
  5. */
  6.  
  7. #include <LiquidCrystal.h>
  8. LiquidCrystal lcd (7, 8, 6, 5, 4, 3);
  9.  
  10. void setup()
  11. {
  12. lcd.begin(16, 2);
  13. lcd.setCursor (5, 0);
  14. lcd.print ("PACMAN");
  15. lcd.setCursor(6, 1);
  16. lcd.print("GAME");
  17.  
  18. }
  19.  
  20. void loop() {
  21. // put your main code here, to run repeatedly:
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment