Advertisement
Kanamex

S04Practica-LCD

Jun 23rd, 2021
754
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #include <LiquidCrystal.h>
  2. LiquidCrystal lcd(7, 6, 5, 4, 3, 2);
  3. void setup()
  4. {
  5. lcd.begin(16,2);
  6. }
  7. void loop()
  8. {
  9. lcd.setCursor(0,0);
  10. lcd.print("#18300497");
  11. lcd.setCursor(0,1);
  12. lcd.print("Carlos Ayala");
  13. delay(1000);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement