Advertisement
mhdew

LCD

Nov 4th, 2020
2,024
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.15 KB | None | 0 0
  1. #include<LiquidCrystal.h>
  2.  
  3. LiquidCrystal lcd(11,10,2,3,4,5);
  4.  
  5. void setup()
  6. {
  7.   lcd.begin(16,2);
  8.   lcd.print("Hi there!");
  9. }
  10.  
  11. void loop()
  12. {
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement