Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<Wire.h>
- #include <LiquidCrystal_I2C.h>
- LiquidCrystal_I2C lcd(0x3F,2,3);
- void setup()
- {
- lcd.begin ();
- }
- void loop()
- {
- lcd.setBacklight(HIGH);
- lcd.setCursor(0,0);
- lcd.print("Arduino e Cia !!");
- lcd.setCursor(0,1);
- lcd.print("LCD e modulo I2C");
- delay(1000);
- lcd.setBacklight(LOW);
- delay(1000);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement