8c2952457
김태훈
응용 프로그램 추가
|
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
|
#include "componenttestwindow.h"
#include "ui_componenttestwindow.h"
ComponentTestWindow::ComponentTestWindow(QWidget *parent, UdpHandler *udp) :
QMainWindow(parent),
ui(new Ui::ComponentTestWindow), udp(udp)
{
ui->setupUi(this);
ui->clockContainer->setParent(ui->upperStack);
connect(udp, SIGNAL(changed()), this, SLOT(onDataChanged()));
damperTimer.setInterval(10 * 1000);
connect(&damperTimer, SIGNAL(timeout()), this, SLOT(damperOff()));
udp->set(TG_OVEN_MODE, 4);
udp->turnOn(TG_SYSTEM);
udp->turnOn(TG_MANUAL_RELAY);
onDataChanged();
}
ComponentTestWindow::~ComponentTestWindow()
{
delete ui;
}
void ComponentTestWindow::onDataChanged()
{
if (udp->hl())
ui->lampButton->setText("OFF");
else
ui->lampButton->setText("ON");
if (udp->hdm())
|
8c2952457
김태훈
응용 프로그램 추가
|
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
|
}
void ComponentTestWindow::on_speakerButton_clicked()
{
}
void ComponentTestWindow::on_lampButton_clicked()
{
if (udp->hl())
lampOff();
else
lampOn();
}
void ComponentTestWindow::on_damperButton_clicked()
{
if (udp->hdm())
{
damperTimer.stop();
damperOff();
}
else
{
damperTimer.start();
damperOn();
}
}
void ComponentTestWindow::on_backButton_clicked()
{
damperTimer.stop();
udp->turnOff(TG_MANUAL_RELAY);
udp->turnOff(TG_SYSTEM);
deleteLater();
}
void ComponentTestWindow::lampOn()
{
udp->turnOn(TG_HL);
}
void ComponentTestWindow::lampOff()
{
udp->turnOff(TG_HL);
}
void ComponentTestWindow::damperOn()
{
udp->turnOn(TG_HDM);
}
void ComponentTestWindow::damperOff()
{
udp->turnOff(TG_HDM);
}
|