#include <LiquidCrystal.h>
LiquidCrystal lcd(8, 9, 4, 5, 6, 7);
void setup() {
Serial.begin(9600);
lcd.begin(16, 2);
}
void loop()
// exemple d'affichage sur un ecran lcd
{
lcd.setCursor(0, 0);
lcd.print("valeur ");
for (int n = 1; n < 15; n++)
{
lcd.setCursor(7, 0);
delay(500);
formaPrint(n); // appel de la fonction formatPrint avec le chiffre n a affiché sous le format 00
}
}
int formaPrint(int val)
{
String format;
String aff = String (val);
if (val < 10)
{
format = "0" + aff;
}
else
{
format = aff;
}
lcd.print(format); // a modifier selon la bibliotheque utiliser
}
(edited)void loop() {
TFTscreen.text(" ", 0, 20);
TFTscreen.text(vleur a afficher, 0, 20)
}