Teademia 543afc9ff9 Implement of Rasp GPIO Input read
Import libwringpi and read handbutton input
2023-11-21 21:22:47 +08:00

17 lines
237 B
C++

#ifndef GPIOINIT_H
#define GPIOINIT_H
#include <QObject>
#include<QThread>
#include<wiringPi.h>
class gpioInit : public QObject
{
Q_OBJECT
public:
explicit gpioInit(QObject *parent = nullptr);
signals:
};
#endif // GPIOINIT_H