#include <LiquidCrystal_I2C.h>
//Í2C Adress and column and line defintion of de LCD
#define I2C_ADDR 0x27
#define LCD_COLUMNS 20
#define LCD_LINES 4
// create LCD-object
LiquidCrystal_I2C lcd(I2C_ADDR, LCD_COLUMNS, LCD_LINES);
void setup() {
Serial.begin(115200);
// init (start) LCD
lcd.init();
// Turn on the backlight on LCD.
lcd.backlight();
// print the Message on the LCD.
//lcd.print("Keyboardeingabe:");
Serial.println("ESP32 Keyboard connection");
lcd.print ("Hello World");
Serial.println("Hello World");
}
void loop() {
delay(10); // this speeds up the simulation
}