#include<LiquidCrystal.h>
LiquidCrystal lcd(27,14,5,18,19,21);
//we cannot control the broghtness of LCD in wokwi
void setup()
{
lcd.begin(16,0);
lcd.print("Hello I am Vimarsh.");
}
void loop()
{
for(int i=0;i<20;i++)
{
lcd.scrollDisplayLeft();
delay(200);
}
}