Frästisch mit elektronischer Höhenverstellung mittels Schrittmotoren.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

123456789101112131415161718192021222324252627282930
  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. #include "Loopable.h"
  11. class WLS: public ezButton, public Loopable {
  12. private:
  13. bool inverted;
  14. public:
  15. WLS();
  16. WLS(int pin);
  17. WLS(int pin, bool _inverted);
  18. bool isPlugged(void);
  19. bool isUnplugged(void);
  20. bool isConnected(void);
  21. void loop(void) override;
  22. };
  23. //Added by Sloeber
  24. #endif