diff --git a/Test/MainWindow.cpp b/Test/MainWindow.cpp index b4036e7..f124647 100644 --- a/Test/MainWindow.cpp +++ b/Test/MainWindow.cpp @@ -1,4 +1,4 @@ -#include "MainWindow.h" +#include "MainWindow.h" #include "ui_MainWindow.h" MainWindow::MainWindow(QWidget* parent) @@ -192,18 +192,97 @@ void MainWindow::on_writeMultiRegister_clicked() } } -void MainWindow::on_fix_clicked() +/*************************************************************************************************/ +void MainWindow::on_init_clicked() +{ + try { + _servoControler.init(); + timer = new QTimer(); + timer->setInterval(2000); + timer->start(); + connect(timer, &QTimer::timeout, this, &MainWindow::handleGetRequestFromServo); + timer->stop(); + } + catch(ServoException exp) + { + ui->showServoError->setText(exp.getMessage()); + } +} + +/*************************************************************************************************/ +void MainWindow::handleGetRequestFromServo() +{ + try { + ui->showSpeed->setText(QString::number(_servoControler.getSpeed())); + ui->showStartAngle->setText(QString::number(_servoControler.getStartAngle())); + ui->showStopAngle->setText(QString::number(_servoControler.getStopAngle())); + ui->showAngleOffset->setText(QString::number(_servoControler.getAngleOffset())); + ui->showAzimuth->setText(QString::number(_servoControler.getAzimuth())); + } + catch(ServoException exp) + { + ui->showServoError->setText(exp.getMessage()); + } +} + +/*************************************************************************************************/ +void MainWindow::on_startMoving_clicked() +{ + try { + _servoControler.startMoving(); + } + catch(ServoException exp) + { + ui->showServoError->setText(exp.getMessage()); + } +} + +/*************************************************************************************************/ +void MainWindow::on_stopMoving_clicked() { - _servoControler.fix(11); + try { + _servoControler.stopMoving(); + } + catch(ServoException exp) + { + ui->showServoError->setText(exp.getMessage()); + } } -void MainWindow::on_pushButton_clicked() +/*************************************************************************************************/ +void MainWindow::on_ResetAzimuth_clicked() { + try { + _servoControler.resetAzimuth(); + } + catch(ServoException exp) + { + ui->showServoError->setText(exp.getMessage()); + } +} - // timer = new QTimer(); - // timer->setInterval(2000); - // timer->start(); - // connect(timer, &QTimer::timeout, &this, &ServoController::handleGetRequestFromServo); - // timer->stop(); +/*************************************************************************************************/ +void MainWindow::on_sectorSpeed_clicked() +{ + try { + _servoControler.sector(ui->startAngle->text().toDouble(), + ui->stopAngle->text().toDouble(), + ui->speed->text().toDouble()); + } + catch(ServoException exp) + { + ui->showServoError->setText(exp.getMessage()); + } +} +/*************************************************************************************************/ +void MainWindow::on_fix_clicked() +{ + try { + _servoControler.fix(ui->speed->text().toDouble()); + } + catch(ServoException exp) + { + ui->showServoError->setText(exp.getMessage()); + } } diff --git a/Test/MainWindow.h b/Test/MainWindow.h index af50f2c..c8e15fa 100644 --- a/Test/MainWindow.h +++ b/Test/MainWindow.h @@ -2,6 +2,7 @@ #define MAINWINDOW_H #include +#include #include "ModbusWrapper.h" #include "ModbusConfig.h" @@ -20,7 +21,8 @@ private: Ui::MainWindow* ui; ModbusWrapper modbusWrapper; ModbusConfig configDevice; - ServoController _servoControler; + ServoController _servoControler; + QTimer* timer; public: MainWindow(QWidget* parent = nullptr); @@ -37,8 +39,13 @@ private slots: void on_writeMultiCoil_clicked(); void on_writeSingleRegister_clicked(); void on_writeMultiRegister_clicked(); - void on_fix_clicked(); - void on_pushButton_clicked(); + void on_init_clicked(); + void handleGetRequestFromServo(); + void on_startMoving_clicked(); + void on_stopMoving_clicked(); + void on_ResetAzimuth_clicked(); + void on_sectorSpeed_clicked(); + void on_fix_clicked(); }; #endif //MAINWINDOW_H diff --git a/Test/MainWindow.ui b/Test/MainWindow.ui index c00666e..87b564d 100644 --- a/Test/MainWindow.ui +++ b/Test/MainWindow.ui @@ -14,12 +14,12 @@ MainWindow - + - 10 - 20 - 811 + -10 + 10 + 841 621 @@ -33,7 +33,7 @@ - 10 + 40 10 89 25 @@ -52,6 +52,10 @@ 91 + + color: rgb(0, 0, 0); +background-color: rgb(186, 178, 158); + Error Monitoring @@ -555,7 +559,7 @@ ResetAzimuth - + 28 @@ -605,7 +609,7 @@ - GroupBox + Set Speed @@ -703,6 +707,206 @@ + + + + 30 + 290 + 621 + 131 + + + + Monitoring Data From Servo + + + + + 40 + 40 + 51 + 17 + + + + Speed: + + + + + + 120 + 40 + 81 + 17 + + + + Start Angle: + + + + + + 230 + 40 + 81 + 17 + + + + Stop Angle: + + + + + + 350 + 40 + 101 + 17 + + + + Angle Offset: + + + + + + 500 + 40 + 101 + 17 + + + + Azimuth + + + + + + 480 + 80 + 101 + 17 + + + + color: rgb(238, 238, 236); +background-color: rgb(52, 101, 164); + + + + + + + + + 350 + 80 + 101 + 17 + + + + color: rgb(238, 238, 236); +background-color: rgb(52, 101, 164); + + + + + + + + + 120 + 80 + 81 + 17 + + + + color: rgb(238, 238, 236); +background-color: rgb(52, 101, 164); + + + + + + + + + 230 + 80 + 81 + 17 + + + + color: rgb(238, 238, 236); +background-color: rgb(52, 101, 164); + + + + + + + + + 30 + 77 + 61 + 20 + + + + background-color: rgb(52, 101, 164); +color: rgb(238, 238, 236); + + + + + + + 0 + + + + + + + 30 + 440 + 621 + 91 + + + + Error Monitor + + + + + 10 + 20 + 611 + 71 + + + + color: rgb(0, 0, 0); +background-color: rgb(186, 178, 158); + + + Error Monitoring + + + true + + +