// //0x27
// #include <LiquidCrystal_I2C.h>
// LiquidCrystal_I2C lcd(0x27,2,1,0,4,5,6,7,3,POSITIVE);
// void setup() {
// lcd.begin(16,2);
// lcd.print("AMIL METHER");
// }
// void loop() {
// // put your main code here, to run repeatedly:
// }
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
// Create an LCD object. Parameters: (I2C address, columns, rows)
LiquidCrystal_I2C lcd(0x27, 16, 2);
void setup() {
lcd.begin(16, 2); // Initialize the LCD with 16 columns and 2 rows
lcd.setCursor(0,1);
lcd.print("METECHS");
delay(1000);
lcd.clear();
lcd.print("AMIL METHER"); // Print a message to the LCD
}
void loop() {
// Your main code here, to run repeatedly
}