#include <Wire.h>
#include <LiquidCrystal_I2C.h>
// Set the LCD address
LiquidCrystal_I2C lcd(0x27, 16, 2); // Change 0x27 to the actual I2C address of your LCD
void setup() {
// Initialize the LCD
lcd.init();
lcd.backlight();
// Display initial message
lcd.setCursor(0, 0);
lcd.print(" Like and ");
lcd.setCursor(0, 1);
lcd.print(" Subscribe ");
}
void loop() {
// Nothing to loop here
}