| 12345678910111213141516171819202122232425262728 |
- /*
- * WLS Sensor, inherits from ezButton.
- *
- * Erstellt: 05.01.2021
- * Autor: Flo Smilari
- */
-
- #ifndef WLS_H_
- #define WLS_H_
-
- #include <ezButton.h>
-
- class WLS: public ezButton {
- private:
- bool inverted;
-
- public:
- WLS();
- WLS(int pin);
- WLS(int pin, bool _inverted);
- bool isPlugged(void);
- bool isUnplugged(void);
- bool isConnected(void);
- };
-
- //Added by Sloeber
- #endif
-
|