/*
MSJ Researchers World
Date - 2nd DEC 2024
Mentor - Mr. Siranjeevi M
Contact - 7373771991
*/
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
// Initialize the LCD (I2C address: 0x27 or 0x3F; adjust as needed)
LiquidCrystal_I2C lcd(0x27, 16, 2); // I2C address, 16 columns, 2 rows
void setup()
{
lcd.begin(16, 2); // Specify 16 columns and 2 rows
lcd.backlight(); // Turn on the backlight
lcd.setCursor(0, 0); // Set the cursor to column 0, row 0
lcd.print("Hello, World!"); // Print text
}
void loop() {
// Nothing to do here
}