washtestwindow.cpp
2.18 KB
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
#include "washtestwindow.h"
#include "ui_washtestwindow.h"
WashTestWindow::WashTestWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::WashTestWindow)
{
ui->setupUi(this);
ui->clockContainer->setParent(ui->upperStack);
setAttribute(Qt::WA_DeleteOnClose);
udp = UdpHandler::getInstance();
connect(udp, SIGNAL(changed()), this, SLOT(onDataChanged()));
udp->set(TG_OVEN_MODE, 4);
udp->turnOn(TG_MANUAL_RELAY);
onDataChanged();
}
WashTestWindow::~WashTestWindow()
{
delete ui;
}
void WashTestWindow::onDataChanged()
{
if (udp->dp())
ui->steamPumpButton->setText("STOP");
else
ui->steamPumpButton->setText("START");
if (udp->ssp())
ui->cleanserPumpButton->setText("STOP");
else
ui->cleanserPumpButton->setText("START");
if (udp->unp())
ui->upperPumpButton->setText("STOP");
else
ui->upperPumpButton->setText("START");
}
void WashTestWindow::on_steamPumpButton_clicked()
{
if (udp->dp())
steamPumpOff();
else
steamPumpOn();
}
void WashTestWindow::on_cleanserPumpButton_clicked()
{
if (udp->ssp())
cleanserPumpOff();
else
cleanserPumpOn();
}
void WashTestWindow::on_upperPumpButton_clicked()
{
if (udp->unp())
upperPumpOff();
else
upperPumpOn();
}
void WashTestWindow::on_drainValveStartButton_clicked()
{
drainValveOpen();
}
void WashTestWindow::on_drainValveStopButton_clicked()
{
drainValveClose();
}
void WashTestWindow::on_backButton_clicked()
{
steamPumpOff();
cleanserPumpOff();
upperPumpOff();
drainValveClose();
udp->turnOff(TG_MANUAL_RELAY);
close();
}
void WashTestWindow::steamPumpOn()
{
udp->turnOn(TG_DP);
}
void WashTestWindow::steamPumpOff()
{
udp->turnOff(TG_DP);
}
void WashTestWindow::cleanserPumpOn()
{
udp->turnOn(TG_SSP);
}
void WashTestWindow::cleanserPumpOff()
{
udp->turnOff(TG_SSP);
}
void WashTestWindow::upperPumpOn()
{
udp->turnOn(TG_UNP);
}
void WashTestWindow::upperPumpOff()
{
udp->turnOff(TG_UNP);
}
void WashTestWindow::drainValveOpen()
{
udp->turnOn(TG_DV);
}
void WashTestWindow::drainValveClose()
{
udp->turnOff(TG_DV);
}