#include <Wire.h>
#include <LiquidCrystal_I2C.h>
// Set the LCD address to 0x27
LiquidCrystal_I2C lcd(0x27, 16, 2);
void setup() {
lcd.begin(16, 2); // Initialize the LCD with 16 columns and 2 rows
lcd.print("Hello, World!");
}
void loop() {
}