#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2); // Change to 16x2 or your specific LCD size
void setup() {
lcd.init(); // Initialize the LCD
lcd.backlight(); // Turn on the backlight
}
void loop() {
lcd.clear(); // Clear the display
String name = "Grescia (*^_^*)";
int len = name.length();
// Scroll the name from right to left across the LCD
for (int pos = 0; pos < 16 + len; pos++) {
lcd.clear(); // Clear display for each iteration
lcd.setCursor(16 - pos, 0); // Adjust cursor position
lcd.print(name); // Print the name
delay(250); // Delay for smooth scrolling
}
}