添加伺服系统

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
+14
View File
@@ -0,0 +1,14 @@
#include "ServoSystem.h"
#include "ui_ServoSystem.h"
ServoSystem::ServoSystem(QWidget *parent) :
QWidget(parent),
ui(new Ui::ServoSystem)
{
ui->setupUi(this);
}
ServoSystem::~ServoSystem()
{
delete ui;
}