safwan092

Untitled

May 18th, 2022
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #include <Wire.h>
  2. #include <LiquidCrystal_I2C.h>
  3.  
  4. LiquidCrystal_I2C lcd(0x27, 16, 2);
  5.  
  6. void setup() {
  7. Serial.begin(9600);
  8. lcd.init();
  9. lcd.backlight();
  10. lcd.setCursor(0, 0);
  11. lcd.print("Hello, world!");
  12. }
  13.  
  14. void loop() {
  15. // put your main code here, to run repeatedly:
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment