#include <Wire.h>
#include <LiquidCrystal_I2C.h>
// Set the LCD address to 0x27 or 0x3F depending on your module
LiquidCrystal_I2C lcd(0x27, 16, 2); // (I2C address, columns, rows)
void setup() {
lcd.init(); // Initialize the LCD
lcd.backlight(); // Turn on backlight
lcd.setCursor(0, 0); // First column, first row
lcd.print("farjad pagal chor !");
lcd.setCursor(0, 1); // First column, second row
lcd.print("LCD I2C Test");
}
void loop() {
// Nothing here for basic test
}