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.

123456789101112131415161718192021222324252627
  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(int pin);
  15. WLS(int pin, bool _inverted);
  16. bool isPlugged(void);
  17. bool isUnplugged(void);
  18. bool isConnected(void);
  19. };
  20. //Added by Sloeber
  21. #endif