toto/BE c/projet/bouton.h
2026-01-09 10:13:55 +01:00

16 lines
No EOL
270 B
C++

#ifndef bouton_H
#define bouton_H
#include "capteur.h"
#include "rgb_lcd.h"
class bouton : public capteur {
private:
bool etat;
public:
bouton();
bouton(int pin);
bool lire_etat();
};
bool choix_bouton(bouton &Brelief,bouton &Bplat);
#endif