Advertisement
inagantid20

Exploring LCD Activity

Jun 21st, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. /*
  2. * Divya Inaganti
  3. * June, 20, 2017
  4. * LCD
  5. */
  6. #include <LiquidCrystal.h>
  7. LiquidCrystal lcd (12, 11, 7, 8, 10, 13);
  8. void setup() {
  9. lcd.begin(16, 2);
  10. lcd.print("My Name is");
  11. lcd.setCursor(4, 1);
  12. lcd.print("Divya");
  13. delay(5000);
  14. lcd.clear();
  15.  
  16. }
  17.  
  18. void loop() {
  19. // put your main code here, to run repeatedly:
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement