14 lines
No EOL
204 B
C++
14 lines
No EOL
204 B
C++
#ifndef bouton_H
|
|
#define bouton_H
|
|
#include "capteur.h"
|
|
class bouton : public capteur {
|
|
private:
|
|
bool etat;
|
|
public:
|
|
bouton();
|
|
bouton(int pin);
|
|
bool lire_etat(bouton& B);
|
|
|
|
};
|
|
|
|
#endif |