17 lines
237 B
C++
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
|