LCD + SCROLL AFFICHAGE

Scénario : Faire défiler le texte de droite à gauche sur 2 lignes sur l'écran LCD.


CODE

#include
// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(12, 11, 5, 4, 3, 7);
void setup()
{
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.print("Bienvenue, Jean Jacques!");
delay(1000);
}
void loop()
{
// scroll 13 positions (string length) to the left
// to move it offscreen left:
for (int positionCounter = 0; positionCounter < 13; positionCounter++)
{
// scroll one position left:
lcd.scrollDisplayLeft();
// wait a bit:
delay(150);
}
}



Télécharger le fichier source