8c2952457
김태훈
응용 프로그램 추가
|
1
2
3
4
5
6
7
8
9
10
|
#ifndef OVENCONTROLLER_H
#define OVENCONTROLLER_H
#include "oven.h"
#include "all_share.h"
#include "udphandler.h"
class OvenController : public OvenInterface
{
Q_OBJECT
|
6eb13ba2e
김태훈
예열 팝업 동작 보완 및 동작 ...
|
11
|
Oven *oven;
|
8c2952457
김태훈
응용 프로그램 추가
|
12
13
14
15
16
|
UdpHandler *udp;
oven_control_t control;
oven_state_t state;
public:
|
6eb13ba2e
김태훈
예열 팝업 동작 보완 및 동작 ...
|
17
|
OvenController(QObject *parent = 0, Oven *oven = 0);
|
8c2952457
김태훈
응용 프로그램 추가
|
18
19
20
21
22
23
24
25
26
27
|
void setUdpHandler(UdpHandler *udp);
int currentTemp();
int currentHumidity();
int currentInterTemp();
bool door();
public slots:
void setHumidity(int percentage);
void setTemp(int celsius);
|
43d009fb5
김태훈
오븐 제어 인터페이스에 시간 설...
|
28
|
void setTime(int secs);
|
8c2952457
김태훈
응용 프로그램 추가
|
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
|
void setInterTemp(int celsius);
void setFan(int rpm);
void startCooking();
void stopCooking();
void startPreheating();
void stopPreheating();
void startCooldown();
void stopCooldown();
void startHumidification();
void stopHumidification();
void startWashing();
void stopWashing();
void openDamper();
void closeDamper();
void onDataChanged();
signals:
void doorOpened();
void doorClosed();
};
#endif // OVENCONTROLLER_H
|