Write your name on LCD scroll left and scroll right arduino.
Here i am using online IDE Tinkercad . If you don't know what is tinkercad then refer my blog HERE or else you can use offline IDE also.
Scroll left side
Code :-
#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
lcd.begin(16,
2);
lcd.print("College Kode");
}
void loop() {
lcd.scrollDisplayLeft();
delay(100);
}
Output :-
Scroll right side
Code :-
#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
lcd.begin(16,
2);
lcd.print("College Kode");
}
void loop() {
lcd.scrollDisplayRight();
delay(100);
}
Output :-
Comments
Post a Comment