#include <LiquidCrystal_I2C.h>
//Uso de cristal liquido 16x2 com a interfaceI2C
//0x27e endereço I2C do display
//16 colunas, 002 linhas
LiquidCrystal_I2C lcd (0x27, 16, 2);
void setup(){
//define os pinos SDA e SCL
Wire.begin(22, 23);
lcd.init();
lcd.backlight();
lcd.setCursor(1,0); // COLUNA 1, LINHA 0
lcd.print("Hello, World!");
lcd.setCursor(0, 1); // COLUNA0, LINHA 1
lcd.print("ESP32-DEVKIT I2C");
}
void loop(){
delay(100);
}