//---------------- Versáo V0.70 -----------------------
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,20,4);
byte customChar[] = {
B11111,
B11011,
B10011,
B11011,
B11011,
B11011,
B10001,
B11111
};
void setup() {
lcd.begin();
lcd.createChar(0, customChar);
lcd.home();
lcd.write(0);
}
void loop() { }