Initiation ecran lcd
Description
Lucas095
#include "Screen.h" #include "Bouton.h" Screen monEcran1; Bouton monBouton1; void setup() { } void loop() { if (monBouton1.estTenuAppuye()) { monEcran1.switchOn(); monEcran1.printMsg(" Bonjour Lucas",0); } else { monEcran1.printMsg("",0); monEcran1.switchOff(); } }