Advertisement
LOLHAROONLOL

PASTEBIN ARDUINO

Dec 7th, 2019
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #include <LiquidCrystal.h>
  2.  
  3. LiquidCrystal lcd(2, 3, 4, 5, 11, 12);
  4. void setup() {
  5.  
  6. lcd.begin(16, 4);
  7. }
  8.  
  9. void loop() {
  10.  
  11.  
  12. lcd.setCursor(0,0);
  13. lcd.print("How to connect ");
  14.  
  15.  
  16. lcd.setCursor(1,1);
  17. lcd.print("LCD to arduino");
  18.  
  19.  
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement