This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Scrolling display for 1602 LCD by Arduino | |
| // by Varad Kulkarni <http://www.microcontrollershub.com> | |
| // Created on 20 May 2018 | |
| #include <LiquidCrystal.h> | |
| LiquidCrystal lcd(12, 11, 5, 4, 3, 2); | |
| // Change following variables as per your need | |
| char * LargeText = " Understanding code for scrolling text on 16*2 LCD Display. "; |
NewerOlder