Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * Rachel Monger
- * LCD Test
- * 6/20/17
- */
- #include <LiquidCrystal.h>
- LiquidCrystal lcd (7, 8, 6, 5, 4, 3);
- void setup()
- {
- lcd.begin(16, 2);
- lcd.setCursor (5, 0);
- lcd.print ("PACMAN");
- lcd.setCursor(6, 1);
- lcd.print("GAME");
- }
- void loop() {
- // put your main code here, to run repeatedly:
- }
Advertisement
Add Comment
Please, Sign In to add comment