Frästisch mit elektronischer Höhenverstellung mittels Schrittmotoren.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

12345678910111213141516171819202122232425262728
  1. /*
  2. * WLS Sensor, inherits from ezButton.
  3. *
  4. * Erstellt: 05.01.2021
  5. * Autor: Flo Smilari
  6. */
  7. #ifndef WLS_H_
  8. #define WLS_H_
  9. #include <ezButton.h>
  10. class WLS: public ezButton {
  11. private:
  12. bool inverted;
  13. public:
  14. WLS();
  15. WLS(int pin);
  16. WLS(int pin, bool _inverted);
  17. bool isPlugged(void);
  18. bool isUnplugged(void);
  19. bool isConnected(void);
  20. };
  21. //Added by Sloeber
  22. #endif