#include <LiquidCrystal_I2C.h>
#include <Wire.h>
// Set the LCD address to 0x27
LiquidCrystal_I2C lcd(0x27, 16, 2);
void setup() {
lcd.init(); // Initialize the LCD
lcd.backlight(); // Turn on the backlight
lcd.print("Hello, Wokwi!");
}
void loop() {
// put your main code here, to run repeatedly:
}