-
Notifications
You must be signed in to change notification settings - Fork 140
/
PhilcoPHS32HeatpumpIR.cpp
146 lines (125 loc) · 4.09 KB
/
PhilcoPHS32HeatpumpIR.cpp
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#include <PhilcoPHS32HeatpumpIR.h>
PhilcoPHS32HeatpumpIR::PhilcoPHS32HeatpumpIR() : HeatpumpIR()
{
static const char model[] PROGMEM = "philco_phs32";
static const char info[] PROGMEM = "{\"mdl\":\"philco_phs32\",\"dn\":\"Philco PHS32\"}";
_model = model;
_info = info;
}
void PhilcoPHS32HeatpumpIR::send(IRSender& IR, uint8_t powerModeCmd, uint8_t operatingModeCmd , uint8_t fanSpeedCmd , uint8_t temperatureCmd , uint8_t swingVCmd , uint8_t swingHCmd )
{
(void)swingVCmd;
(void)swingHCmd;
// Sensible defaults for the heat pump mode
uint8_t powerMode = PHILCO_AIRCON1_POWER_ON;
uint8_t operatingMode = PHILCO_AIRCON1_MODE_COOL;
uint8_t fanSpeed = PHILCO_AIRCON1_FAN_AUTO;
uint8_t temperature = 24;
uint8_t swingV=0;
uint8_t swingH=0;
if (powerModeCmd == POWER_OFF)
{
powerMode = PHILCO_AIRCON1_POWER_OFF;
temperature = PHILCO_AIRCON1_OFF_TEMP;
operatingMode = PHILCO_AIRCON1_MODE_COOL;
}
else
{
switch (operatingModeCmd)
{
case MODE_HEAT:
operatingMode = PHILCO_AIRCON1_MODE_HEAT;
break;
case MODE_COOL:
operatingMode = PHILCO_AIRCON1_MODE_COOL;
break;
case MODE_DRY:
operatingMode = PHILCO_AIRCON1_MODE_DRY;
fanSpeedCmd = FAN_AUTO; // Fan speed is always 'AUTO' in DRY mode
temperatureCmd = PHILCO_AIRCON1_DRY_TEMP; // Fixed temperature DRY mode
break;
case MODE_FAN:
operatingMode = PHILCO_AIRCON1_MODE_FAN;
temperatureCmd = PHILCO_AIRCON1_FAN_TEMP; // Fixed temperature FAN mode
if ( fanSpeedCmd == FAN_AUTO ) {
fanSpeedCmd = FAN_2; // Fan speed cannot be 'AUTO' in FAN mode
};
break;
}
if ( temperatureCmd > 17 && temperatureCmd < 31)
{
temperature = temperatureCmd;
}
}
switch (fanSpeedCmd)
{
case FAN_AUTO:
fanSpeed = PHILCO_AIRCON1_FAN_AUTO;
break;
case FAN_1:
fanSpeed = PHILCO_AIRCON1_FAN_LOW;
break;
case FAN_2:
fanSpeed = PHILCO_AIRCON1_FAN_LOW;
break;
case FAN_3:
fanSpeed = PHILCO_AIRCON1_FAN_MED;
break;
case FAN_4:
fanSpeed = PHILCO_AIRCON1_FAN_HIGH;
break;
case FAN_5:
fanSpeed = PHILCO_AIRCON1_FAN_HIGH;
break;
}
sendPhilco(IR, powerMode, operatingMode, fanSpeed, temperature, swingV, swingH);
}
// Send the Philco code
void PhilcoPHS32HeatpumpIR::sendPhilco(IRSender& IR, uint8_t powerMode, uint8_t operatingMode, uint8_t fanSpeed, uint8_t temperature, uint8_t swingV ,uint8_t swingH)
{
(void)swingV;
(void)swingH;
uint8_t PhilcoTemplate[] = { 0x83, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00 };
uint8_t i;
// Set Power state
PhilcoTemplate[18] = powerMode;
// Set the Fan speed, Temperature and Operating Mode
PhilcoTemplate[2] += fanSpeed;
PhilcoTemplate[3] = (temperature - 18) << 4;
PhilcoTemplate[3] += operatingMode;
// Calculate checksums
for (int i = 2; i < 13; i++) {
PhilcoTemplate[13] ^= PhilcoTemplate[i];
};
for (int i = 14; i < 20; i++) {
PhilcoTemplate[20] ^= PhilcoTemplate[i];
};
// 38 kHz PWM frequency
IR.setFrequency(38);
// Send Header
IR.mark(PHILCO_AIRCON1_HDR_MARK);
IR.space(PHILCO_AIRCON1_HDR_SPACE);
// Send 6 bytes of Data
for (unsigned int i=0; i<6; i++) {
IR.sendIRbyte(PhilcoTemplate[i], PHILCO_AIRCON1_BIT_MARK, PHILCO_AIRCON1_ZERO_SPACE, PHILCO_AIRCON1_ONE_SPACE);
}
// Send Message space
IR.mark(PHILCO_AIRCON1_BIT_MARK);
IR.space(PHILCO_AIRCON1_MSG_SPACE);
// Send 8 bytes of Data
for (unsigned int i=6; i<14; i++) {
IR.sendIRbyte(PhilcoTemplate[i], PHILCO_AIRCON1_BIT_MARK, PHILCO_AIRCON1_ZERO_SPACE, PHILCO_AIRCON1_ONE_SPACE);
}
// Send Message space
IR.mark(PHILCO_AIRCON1_BIT_MARK);
IR.space(PHILCO_AIRCON1_MSG_SPACE);
// Send 7 bytes of Data
for (unsigned int i=14; i<21; i++) {
IR.sendIRbyte(PhilcoTemplate[i], PHILCO_AIRCON1_BIT_MARK, PHILCO_AIRCON1_ZERO_SPACE, PHILCO_AIRCON1_ONE_SPACE);
}
// End mark
IR.mark(PHILCO_AIRCON1_BIT_MARK);
IR.space(0);
}