#include <LiquidCrystal_I2C.h>
#define LCD_ADDR 0x27// Set the LCD address to 0x27 for a 16x2 LCD (You might need to change this to 0x3F for some displays)
#define LCD_COLUMNS 16
#define LCD_ROWS 2
LiquidCrystal_I2C lcd(LCD_ADDR, LCD_COLUMNS, LCD_ROWS);
void setup() {
// Initialize the LCD
lcd.begin(16,2);
lcd.init();
lcd.backlight();
// Display the message on the LCD
lcd.setCursor(2, 0); // Set cursor to column 0, line 5
lcd.print("MECHANICAL"); // Print the first part of the message
lcd.setCursor(3, 1); // Set cursor to column 0, line 1
lcd.print("ENGINEERING"); // Print the second part of the message
}
void loop() {
// No need to do anything here for this static display
}