|
@ -1,13 +1,12 @@ |
|
|
#ifndef SERVOCONTROLLER_H |
|
|
#ifndef SERVOCONTROLLER_H |
|
|
#define SERVOCONTROLLER_H |
|
|
#define SERVOCONTROLLER_H |
|
|
#include <QTimer> |
|
|
|
|
|
|
|
|
|
|
|
#include "ModbusWrapper.h" |
|
|
#include "ModbusWrapper.h" |
|
|
#include "ModbusConfig.h" |
|
|
#include "ModbusConfig.h" |
|
|
|
|
|
|
|
|
class ServoController |
|
|
class ServoController |
|
|
{ |
|
|
{ |
|
|
public: |
|
|
|
|
|
ServoController(); |
|
|
|
|
|
private: |
|
|
private: |
|
|
ModbusWrapper _modbusWrapper; |
|
|
ModbusWrapper _modbusWrapper; |
|
|
const int SRV_START_ANGLE_INT_PART_REG = 2000; |
|
|
const int SRV_START_ANGLE_INT_PART_REG = 2000; |
|
@ -27,8 +26,6 @@ private: |
|
|
const quint16 SRV_APPLY_SETTING_VAL = 1000; |
|
|
const quint16 SRV_APPLY_SETTING_VAL = 1000; |
|
|
const quint16 SRV_CALIBRATION_VAL = 13576; |
|
|
const quint16 SRV_CALIBRATION_VAL = 13576; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private: |
|
|
|
|
|
void apply(); |
|
|
void apply(); |
|
|
void enableDrive(); |
|
|
void enableDrive(); |
|
|
void setStartStop(bool start); |
|
|
void setStartStop(bool start); |
|
@ -38,7 +35,6 @@ private: |
|
|
void changeMode(double startAngle, double stopAngle, double speed); |
|
|
void changeMode(double startAngle, double stopAngle, double speed); |
|
|
ModbusConfig initiateConfig(); |
|
|
ModbusConfig initiateConfig(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public: |
|
|
public: |
|
|
void init(); |
|
|
void init(); |
|
|
void startMoving(); |
|
|
void startMoving(); |
|
@ -53,8 +49,6 @@ public: |
|
|
double getAngleOffset(); |
|
|
double getAngleOffset(); |
|
|
void setAngleOffset(double offset); |
|
|
void setAngleOffset(double offset); |
|
|
double getAzimuth(); |
|
|
double getAzimuth(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
#endif // SERVOCONTROLLER_H
|
|
|
#endif // SERVOCONTROLLER_H
|
|
|