#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2); // I2C address, width, height
void setup() {
lcd.init();
lcd.backlight();
lcd.setCursor(0, 0);
lcd.print("Storage Tower");
lcd.setCursor(0, 1);
lcd.print("Status: OK");
}
void loop() {}