Frästisch mit elektronischer Höhenverstellung mittels Schrittmotoren.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

WLS.h 341B

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