Advertisement
Guest User

LCD

a guest
Feb 17th, 2020
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #include <LiquidCrystal.h>
  2. LiquidCrystal miPantallita(12, 13, 5, 4, 3, 2);
  3.  
  4. void setup() {
  5. miPantallita.begin(16,2);
  6. miPantallita.setCursor(5, 0); // first row fifth column
  7. miPantallita.print("Hello:");
  8. miPantallita.setCursor(2, 1); // second row fifth column
  9. miPantallita.print("I like Food:");
  10.  
  11. }
  12.  
  13. void loop() {
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement