#include #include // Set the LCD address to 0x27 for a 16 chars and 2 line display LiquidCrystal_I2C lcd(0x27, 16, 2); void setup() { // Initialize the LCD lcd.init(); // Turn on the backlight lcd.backlight(); } void loop() { // Clear the LCD screen lcd.clear(); // Set the cursor to the first position lcd.setCursor(0, 0); // Print "hello" on the first line lcd.print("T_CUBINO"); // Wait for a moment delay(1000); }