// #include <LiquidCrystal_I2C.h>
// LiquidCrystal_I2C lcd(0x27 , 16,2);
// void setup() {
// // put your setup code here, to run once:
// lcd.init();
// lcd.clear();
// lcd.backlight();
// lcd.begin(16,2);
// Serial.begin(9600);
// }
// void loop() {
// // put your main code here, to run repeatedly:
// lcd.setCursor(2,0);
// lcd.print("Hello World");
// lcd.setCursor(1,1);
// lcd.print("ARIS Department");
// delay(200);
// }
// void scrollText(String message, int row) {
// for (int i = 0; i < message.length(); i++) {
// lcd.setCursor(0, row);
// lcd.print(message.substring(i));
// delay(300);
// }
// lcd.clear();
// }