Frästisch mit elektronischer Höhenverstellung mittels Schrittmotoren.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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