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.

gpiomanager.h 299B

1234567891011121314151617
  1. #ifndef GPIOMANAGER_H
  2. #define GPIOMANAGER_H
  3. #include "inputmanager.h"
  4. class GpioManager : public InputManager
  5. {
  6. public:
  7. GpioManager(QObject* parent = 0);
  8. public slots:
  9. bool init(const QVariant &pins) override;
  10. QVariant read(const QVariant &pin) override;
  11. };
  12. #endif // GPIOMANAGER_H