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.
12345678910111213141516171819 |
- #ifndef GPIOMANAGER_H
- #define GPIOMANAGER_H
-
- #include "inputmanager.h"
-
- class GpioManager : public InputManager
- {
- Q_OBJECT
- public:
- GpioManager(QObject* parent = 0);
- virtual ~GpioManager();
-
- public slots:
- bool init(const QVariant &pins) override;
-
- QVariant read(const QVariant &pin) override;
- };
-
- #endif // GPIOMANAGER_H
|