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

11 lines
209 B
C++

#include <wiringPi.h>
#include <QApplication>
#include"controller.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Controller * NewController=new Controller();
return a.exec();
}