添加伺服系统

This commit is contained in:
hm
2020-10-06 17:11:59 +08:00
parent 16579855c0
commit 6da5821dcb
12 changed files with 439 additions and 10 deletions
+22
View File
@@ -0,0 +1,22 @@
#ifndef SERVOSYSTEM_H
#define SERVOSYSTEM_H
#include <QWidget>
namespace Ui {
class ServoSystem;
}
class ServoSystem : public QWidget
{
Q_OBJECT
public:
explicit ServoSystem(QWidget *parent = nullptr);
~ServoSystem();
private:
Ui::ServoSystem *ui;
};
#endif // SERVOSYSTEM_H