// // Created by camer on 16/05/2020. // #ifndef PROJET_VICTORAVECUNK_EXTERNALDIGITALSENSORBUTTON_H #define PROJET_VICTORAVECUNK_EXTERNALDIGITALSENSORBUTTON_H #include "../DigitalDevice.h" class ExternalDigitalSensorButton : public DigitalSensor{ public: ExternalDigitalSensorButton(int temps); int getState(); void setState(); virtual void run(); }; #endif //PROJET_VICTORAVECUNK_EXTERNALDIGITALSENSORBUTTON_H