Shekhar777

LCD CODE

Mar 29th, 2020
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include <LiquidCrystal.h>
  2.  
  3. LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
  4.  
  5. void setup() {
  6.   lcd.begin(16, 2);
  7.   }
  8.  
  9. void loop() {
  10.   lcd.print("hello, world!");
  11.   delay(500);
  12.   lcd.clear();
  13.   delay(500);
  14. }
Add Comment
Please, Sign In to add comment