Blame view

app/gui/oven_control/fantestwindow.cpp 8.14 KB
8c2952457   김태훈   응용 프로그램 추가
1
2
  #include "fantestwindow.h"
  #include "ui_fantestwindow.h"
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
3
  #include <QKeyEvent>
66e60ceb5   김태훈   모든 버튼에 음향 효과 추가
4
  #include "soundplayer.h"
538041ab9   김태훈   소스 코드 구조 개선
5
  FanTestWindow::FanTestWindow(QWidget *parent) :
8c2952457   김태훈   응용 프로그램 추가
6
      QMainWindow(parent),
538041ab9   김태훈   소스 코드 구조 개선
7
      ui(new Ui::FanTestWindow)
8c2952457   김태훈   응용 프로그램 추가
8
9
  {
      ui->setupUi(this);
6f96c947a   김태훈   GUI 0.1.4
10
8c2952457   김태훈   응용 프로그램 추가
11
      ui->clockContainer->setParent(ui->upperStack);
6f96c947a   김태훈   GUI 0.1.4
12
      setAttribute(Qt::WA_DeleteOnClose);
66e60ceb5   김태훈   모든 버튼에 음향 효과 추가
13
14
      foreach (QPushButton *button, findChildren<QPushButton *>())
          connect(button, &QPushButton::pressed, SoundPlayer::playClick);
538041ab9   김태훈   소스 코드 구조 개선
15
      udp = UdpHandler::getInstance();
8c2952457   김태훈   응용 프로그램 추가
16
17
18
19
20
21
22
      connect(udp, SIGNAL(changed()), this, SLOT(onDataChanged()));
  
      currentFan = Fan1;
      direction1 = direction2 = ClockWise;
      rpm1 = rpm2 = 500;
  
      udp->set(TG_OVEN_MODE, 4);
8c2952457   김태훈   응용 프로그램 추가
23
24
25
26
27
28
29
30
31
32
33
34
35
36
      udp->turnOn(TG_MANUAL_FAN1);
      udp->turnOn(TG_MANUAL_FAN2);
      udp->set(TG_FAN1_RPM, rpm1);
      udp->set(TG_FAN2_RPM, rpm2);
      udp->set(TG_FAN1_RPM, direction1);
      udp->set(TG_FAN2_RPM, direction2);
  
      onDataChanged();
  }
  
  FanTestWindow::~FanTestWindow()
  {
      delete ui;
  }
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
37
38
39
40
  void FanTestWindow::keyPressEvent(QKeyEvent *event)
  {
      switch (event->key())
      {
01249f413   김태훈   엔코더 방향 반전. 하드웨어가 변경됨
41
      case 0x01000032:    // Turn left
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
42
43
44
45
46
          onEncoderLeft();
          break;
      case 0x01000031:    // Push
          pushed = focusWidget();
          break;
01249f413   김태훈   엔코더 방향 반전. 하드웨어가 변경됨
47
      case 0x01000030:    // Turn right
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
48
49
50
51
52
53
54
55
56
          onEncoderRight();
          break;
      }
  }
  
  void FanTestWindow::keyReleaseEvent(QKeyEvent *event)
  {
      switch (event->key())
      {
01249f413   김태훈   엔코더 방향 반전. 하드웨어가 변경됨
57
      case 0x01000032:    // Turn left
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
58
59
60
61
62
63
64
65
          onEncoderLeft();
          break;
      case 0x01000031:    // Push
          if (focusWidget() == pushed)
              onEncoderClicked(pushed);
  
          pushed = NULL;
          break;
01249f413   김태훈   엔코더 방향 반전. 하드웨어가 변경됨
66
      case 0x01000030:    // Turn right
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
67
68
69
70
          onEncoderRight();
          break;
      }
  }
8c2952457   김태훈   응용 프로그램 추가
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
  void FanTestWindow::onDataChanged()
  {
      if (udp->convection1())
          ui->start1Button->setText("STOP");
      else
          ui->start1Button->setText("START");
  
      if (udp->convection2())
          ui->start2Button->setText("STOP");
      else
          ui->start2Button->setText("START");
  
      int rpm;
      Direction dir;
  
      QString unselectedStyle("color: white");
      QString selectedStyle("color: yellow");
  
      ui->motorLabel1->setStyleSheet(unselectedStyle);
      ui->motorLabel2->setStyleSheet(unselectedStyle);
      ui->directionLabelLeft->setStyleSheet(unselectedStyle);
      ui->directionLabelRight->setStyleSheet(unselectedStyle);
      ui->rpmLabel500->setStyleSheet(unselectedStyle);
      ui->rpmLabel725->setStyleSheet(unselectedStyle);
      ui->rpmLabel950->setStyleSheet(unselectedStyle);
      ui->rpmLabel1175->setStyleSheet(unselectedStyle);
      ui->rpmLabel1400->setStyleSheet(unselectedStyle);
  
      switch (currentFan)
      {
      case Fan1:
          rpm = rpm1;
          dir = direction1;
05f2a7552   김태훈   image 관리 구조 변경
104
          ui->fanLabel->setPixmap(QPixmap(":/images/config/service/fan_sel_1.png"));
8c2952457   김태훈   응용 프로그램 추가
105
106
107
108
109
          ui->motorLabel1->setStyleSheet(selectedStyle);
          break;
      case Fan2:
          rpm = rpm2;
          dir = direction2;
05f2a7552   김태훈   image 관리 구조 변경
110
          ui->fanLabel->setPixmap(QPixmap(":/images/config/service/fan_sel_2.png"));
8c2952457   김태훈   응용 프로그램 추가
111
112
113
114
115
          ui->motorLabel2->setStyleSheet(selectedStyle);
          break;
      default:
          rpm = 500;
          dir = ClockWise;
05f2a7552   김태훈   image 관리 구조 변경
116
          ui->fanLabel->setPixmap(QPixmap(":/images/config/service/fan_sel_1.png"));
8c2952457   김태훈   응용 프로그램 추가
117
118
119
120
121
122
          ui->motorLabel1->setStyleSheet(selectedStyle);
      }
  
      switch (rpm)
      {
      case 500:
05f2a7552   김태훈   image 관리 구조 변경
123
          ui->rpmLabel->setPixmap(QPixmap(":/images/config/service/fan_level_1.png"));
8c2952457   김태훈   응용 프로그램 추가
124
125
126
          ui->rpmLabel500->setStyleSheet(selectedStyle);
          break;
      case 725:
05f2a7552   김태훈   image 관리 구조 변경
127
          ui->rpmLabel->setPixmap(QPixmap(":/images/config/service/fan_level_2.png"));
8c2952457   김태훈   응용 프로그램 추가
128
129
130
          ui->rpmLabel725->setStyleSheet(selectedStyle);
          break;
      case 950:
05f2a7552   김태훈   image 관리 구조 변경
131
          ui->rpmLabel->setPixmap(QPixmap(":/images/config/service/fan_level_3.png"));
8c2952457   김태훈   응용 프로그램 추가
132
133
134
          ui->rpmLabel950->setStyleSheet(selectedStyle);
          break;
      case 1175:
05f2a7552   김태훈   image 관리 구조 변경
135
          ui->rpmLabel->setPixmap(QPixmap(":/images/config/service/fan_level_4.png"));
8c2952457   김태훈   응용 프로그램 추가
136
137
138
          ui->rpmLabel1175->setStyleSheet(selectedStyle);
          break;
      case 1400:
05f2a7552   김태훈   image 관리 구조 변경
139
          ui->rpmLabel->setPixmap(QPixmap(":/images/config/service/fan_level_5.png"));
8c2952457   김태훈   응용 프로그램 추가
140
141
142
          ui->rpmLabel1400->setStyleSheet(selectedStyle);
          break;
      default:
05f2a7552   김태훈   image 관리 구조 변경
143
          ui->rpmLabel->setPixmap(QPixmap(":/images/config/service/fan_level_1.png"));
8c2952457   김태훈   응용 프로그램 추가
144
145
146
147
148
149
          ui->rpmLabel500->setStyleSheet(selectedStyle);
      }
  
      switch (dir)
      {
      case ClockWise:
05f2a7552   김태훈   image 관리 구조 변경
150
          ui->directionLabel->setPixmap(QPixmap(":/images/config/service/fan_dir_cw.png"));
8c2952457   김태훈   응용 프로그램 추가
151
152
153
          ui->directionLabelRight->setStyleSheet(selectedStyle);
          break;
      case CounterClockWise:
05f2a7552   김태훈   image 관리 구조 변경
154
          ui->directionLabel->setPixmap(QPixmap(":/images/config/service/fan_dir_ccw.png"));
8c2952457   김태훈   응용 프로그램 추가
155
156
157
          ui->directionLabelLeft->setStyleSheet(selectedStyle);
          break;
      default:
05f2a7552   김태훈   image 관리 구조 변경
158
          ui->directionLabel->setPixmap(QPixmap(":/images/config/service/fan_dir_cw.png"));
8c2952457   김태훈   응용 프로그램 추가
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
          ui->directionLabelRight->setStyleSheet(selectedStyle);
      }
  
      QString buf;
      ui->motor1RpmLabel->setText(buf.sprintf("%d rpm", rpm1));
      ui->motor2RpmLabel->setText(buf.sprintf("%d rpm", rpm2));
  }
  
  void FanTestWindow::on_rpmButton_clicked()
  {
      int *target;
      switch (currentFan)
      {
      case Fan1:
          target = &rpm1;
          break;
      case Fan2:
          target = &rpm2;
          break;
      default:
          return;
      }
  
      switch (*target)
      {
      case 500:
          *target = 725;
          break;
      case 725:
          *target = 950;
          break;
      case 950:
          *target = 1175;
          break;
      case 1175:
          *target = 1400;
          break;
      case 1400:
          *target = 500;
          break;
      default:
          *target = 500;
      }
  
      setRpm(currentFan, *target);
  
      onDataChanged();
  }
  
  void FanTestWindow::on_directionButton_clicked()
  {
      Direction *target;
      switch (currentFan)
      {
      case Fan1:
          target = &direction1;
          break;
      case Fan2:
          target = &direction2;
          break;
      default:
          return;
      }
  
      switch (*target)
      {
      case ClockWise:
          *target = CounterClockWise;
          break;
      case CounterClockWise:
          *target = ClockWise;
          break;
      default:
          return;
      }
  
      setDirection(currentFan, *target);
  
      onDataChanged();
  }
  
  void FanTestWindow::on_motorButton_clicked()
  {
      switch (currentFan)
      {
      case Fan1:
          currentFan = Fan2;
          break;
      case Fan2:
          currentFan = Fan1;
          break;
      default:
          currentFan = Fan1;
      }
  
      onDataChanged();
  }
  
  void FanTestWindow::on_start1Button_clicked()
  {
      if (udp->convection1())
          stop(Fan1);
      else
          start(Fan1);
  }
  
  void FanTestWindow::on_start2Button_clicked()
  {
      if (udp->convection2())
          stop(Fan2);
      else
          start(Fan2);
  }
  
  void FanTestWindow::on_backButton_clicked()
  {
      stop(Fan1);
      stop(Fan2);
625bebad7   김태훈   메인 보드 On/Off 관련 루...
277
278
279
280
      udp->set(TG_FAN1_RPM, 500);
      udp->set(TG_FAN2_RPM, 500);
      udp->set(TG_FAN1_DIRECTOIN, 0);
      udp->set(TG_FAN2_DIRECTOIN, 0);
8c2952457   김태훈   응용 프로그램 추가
281
282
      udp->turnOff(TG_MANUAL_FAN1);
      udp->turnOff(TG_MANUAL_FAN2);
8c2952457   김태훈   응용 프로그램 추가
283
284
285
  
      deleteLater();
  }
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
  void FanTestWindow::onEncoderLeft()
  {
      focusPreviousChild();
  }
  
  void FanTestWindow::onEncoderRight()
  {
      focusNextChild();
  }
  
  void FanTestWindow::onEncoderClicked(QWidget *clicked)
  {
      QPushButton *b = qobject_cast<QPushButton *>(clicked);
      if (b)
          b->click();
  }
8c2952457   김태훈   응용 프로그램 추가
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
  void FanTestWindow::setRpm(Fan fan, int rpm)
  {
      switch (fan)
      {
      case Fan1:
          udp->set(TG_FAN1_RPM, rpm);
          break;
      case Fan2:
          udp->set(TG_FAN2_RPM, rpm);
          break;
      }
  }
  
  void FanTestWindow::setDirection(Fan fan, Direction direction)
  {
      int dir;
      switch (direction)
      {
      case ClockWise:
          dir = 0;
          break;
      case CounterClockWise:
          dir = 1;
          break;
      default:
          return;
      }
  
      switch (fan)
      {
      case Fan1:
          udp->set(TG_FAN1_DIRECTOIN, dir);
          break;
      case Fan2:
          udp->set(TG_FAN2_DIRECTOIN, dir);
          break;
      }
  }
  
  void FanTestWindow::start(Fan fan)
  {
      switch (fan)
      {
      case Fan1:
          udp->turnOn(TG_FAN1_MANUAL);
          break;
      case Fan2:
          udp->turnOn(TG_FAN2_MANUAL);
          break;
      }
  }
  
  void FanTestWindow::stop(Fan fan)
  {
      switch (fan)
      {
      case Fan1:
          udp->turnOff(TG_FAN1_MANUAL);
          break;
      case Fan2:
          udp->turnOff(TG_FAN2_MANUAL);
          break;
      }
  }