#include #include // Set the LCD address to 0x27 or 0x3F for a 16 chars and 2 line display LiquidCrystal_I2C lcd(0x27, 16, 2); void setup() { lcd.init(); lcd.backlight(); lcd.setCursor(0, 0); lcd.print("Hello Onik jan"); } void loop() { // Nothing here }