forked from vedderb/vesc_tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpageexperiments.h
132 lines (110 loc) · 3.61 KB
/
pageexperiments.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/*
Copyright 2018 Benjamin Vedder benjamin@vedder.se
This file is part of VESC Tool.
VESC Tool is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
VESC Tool is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef PAGEEXPERIMENTS_H
#define PAGEEXPERIMENTS_H
#include <QWidget>
#include <QTimer>
#include <QElapsedTimer>
#include "vescinterface.h"
#ifdef HAS_SERIALPORT
#include <QSerialPortInfo>
#endif
namespace Ui {
class PageExperiments;
}
class PageExperiments : public QWidget
{
Q_OBJECT
public:
explicit PageExperiments(QWidget *parent = 0);
~PageExperiments();
VescInterface *vesc() const;
void setVesc(VescInterface *vesc);
void stop();
private slots:
void valuesReceived(MC_VALUES values, unsigned int mask);
void timerSlot();
void victronDataAvailable();
void on_dutyRunButton_clicked();
void on_currentRunButton_clicked();
void on_rpmRunButton_clicked();
void on_sampleIntervalBox_valueChanged(int arg1);
void on_stopButton_clicked();
void on_rescaleButton_clicked();
void on_zoomHButton_toggled(bool checked);
void on_zoomVButton_toggled(bool checked);
void on_openButton_clicked();
void on_saveCsvButton_clicked();
void on_savePdfButton_clicked();
void on_savePngButton_clicked();
void on_victronRefreshButton_clicked();
void on_victronConnectButton_clicked();
void on_victronDisconnectButton_clicked();
void on_openCompButton_clicked();
void on_compCloseButton_clicked();
private:
typedef enum {
EXPERIMENT_OFF = 0,
EXPERIMENT_DUTY,
EXPERIMENT_CURRENT,
EXPERIMENT_RPM,
EXPERIMENT_HOLD
} experiment_state;
Ui::PageExperiments *ui;
VescInterface *mVesc;
experiment_state mState;
QVector<double> mTimeVec;
QVector<double> mCurrentInVec;
QVector<double> mCurrentMotorVec;
QVector<double> mVoltageVec;
QVector<double> mPowerVec;
QVector<double> mRpmVec;
QVector<double> mTempFetVec;
QVector<double> mTempFet1Vec;
QVector<double> mTempFet2Vec;
QVector<double> mTempFet3Vec;
QVector<double> mTempMotorVec;
QVector<double> mDutyVec;
QVector<double> mCTimeVec;
QVector<double> mCCurrentInVec;
QVector<double> mCCurrentMotorVec;
QVector<double> mCVoltageVec;
QVector<double> mCPowerVec;
QVector<double> mCRpmVec;
QVector<double> mCTempFetVec;
QVector<double> mCTempFet1Vec;
QVector<double> mCTempFet2Vec;
QVector<double> mCTempFet3Vec;
QVector<double> mCTempMotorVec;
QVector<double> mCDutyVec;
QTimer *mTimer;
QElapsedTimer mExperimentTimer;
// Victron Energy BMV700
QElapsedTimer mVictronTimer;
#ifdef HAS_SERIALPORT
QSerialPort *mVictronPort;
#endif
QByteArray mVictronData;
double mVictronVoltage;
double mVictronCurrent;
void resetSamples();
void resetCompareSamples();
void updateZoom();
QVector<double> createScaledVector(QVector<double> &inVec, double maxValue, QString &scaleStr);
void plotSamples(bool exportFormat);
void victronGetCurrent();
void victronGetVoltage();
};
#endif // PAGEEXPERIMENTS_H