-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontrolTab.h
73 lines (54 loc) · 1.2 KB
/
controlTab.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#ifndef CONTROLTAB_H
#define CONTROLTAB_H
#include <QWidget>
#include <QTimer>
#include <type_traits>
QT_USE_NAMESPACE
QT_BEGIN_NAMESPACE
namespace Ui {
class ControlTab;
}
QT_END_NAMESPACE
class MainWindow;
class ControlTab : public QWidget
{
Q_OBJECT
public:
explicit ControlTab(QWidget *parent = 0);
~ControlTab();
void setMainWindow(MainWindow* mainWindow_);
void savePlot();
private slots:
void realtimeDataSlot();
void sendData();
void toggleMode();
void setValue(int newValue);
void setK0(int newValue);
void setKp(double newValue);
void setKi(double newValue);
void setKd(double newValue);
private:
Ui::ControlTab *ui;
MainWindow *mainWindow;
QTimer dataTimer;
bool modeAutoTraj;
double plotStartTime;
double updateFrequency;
double showPastTime;
double windowWidth;
double rightBlankTime;
qint64 timeSpiNNakerStartBefore;
int processDataInterval;
bool readyToControl;
double prev_target_angle;
double prev_current_angle;
double prev_can_time_angle;
double prev_error;
double integral;
int K0;
double Kp;
double Ki;
double Kd;
double duration_max;
};
#endif // CONTROLTAB_H