-
Notifications
You must be signed in to change notification settings - Fork 839
/
Copy pathir_Bosch.cpp
332 lines (300 loc) · 11.9 KB
/
ir_Bosch.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
147
148
149
150
151
152
153
154
155
156
157
158
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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
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
// Copyright 2022 David Conran
// Copyright 2022 Nico Thien
/// @file
/// @brief Support for the Bosch A/C / heatpump protocol
/// @see https://github.com/crankyoldgit/IRremoteESP8266/issues/1787
#include "ir_Bosch.h"
#include <algorithm>
#if SEND_BOSCH144
/// Send a Bosch 144-bit / 18-byte message (96-bit message are also possible)
/// Status: BETA / Probably Working.
/// @param[in] data The message to be sent.
/// @param[in] nbytes The number of bytes of message to be sent.
/// @param[in] repeat The number of times the command is to be repeated.
void IRsend::sendBosch144(const unsigned char data[], const uint16_t nbytes,
const uint16_t repeat) {
// nbytes is required to be a multiple of kBosch144BytesPerSection.
if (nbytes % kBosch144BytesPerSection != 0)return;
// Set IR carrier frequency
enableIROut(kBoschFreq);
for (uint16_t r = 0; r <= repeat; r++) {
for (uint16_t offset=0; offset < nbytes; offset += kBosch144BytesPerSection)
// Section Header + Data + Footer
sendGeneric(kBoschHdrMark, kBoschHdrSpace,
kBoschBitMark, kBoschOneSpace,
kBoschBitMark, kBoschZeroSpace,
kBoschBitMark, kBoschFooterSpace,
data + offset, kBosch144BytesPerSection,
kBoschFreq, true, 0, kDutyDefault);
space(kDefaultMessageGap); // Complete guess
}
}
#endif // SEND_BOSCH144
/// Class constructor.
/// @param[in] pin GPIO to be used when sending.
/// @param[in] inverted Is the output signal to be inverted?
/// @param[in] use_modulation Is frequency modulation to be used?
IRBosch144AC::IRBosch144AC(const uint16_t pin, const bool inverted,
const bool use_modulation)
: _irsend(pin, inverted, use_modulation) { stateReset(); }
/// Reset the internal state to a fixed known good state.
void IRBosch144AC::stateReset(void) {
setRaw(kBosch144DefaultState, kBosch144StateLength);
setPower(true);
}
/// Set up hardware to be able to send a message.
void IRBosch144AC::begin(void) { _irsend.begin(); }
#if SEND_BOSCH144
/// Send the current internal state as an IR message.
/// @param[in] repeat Nr. of times the message will be repeated.
void IRBosch144AC::send(const uint16_t repeat) {
if (!powerFlag) { // "Off" is a 96bit message
_irsend.sendBosch144(kBosch144Off, sizeof(kBosch144Off), repeat);
} else {
_irsend.sendBosch144(getRaw(), kBosch144StateLength, repeat);
} // other 96bit messages are not yet supported
}
#endif // SEND_BOSCH144
/// Get a copy of the internal state as a valid code for this protocol.
/// @return A valid code for this protocol based on the current internal state.
unsigned char* IRBosch144AC::getRaw(void) {
setInvertBytes();
setCheckSumS3();
return _.raw;
}
/// Set the internal state from a valid code for this protocol.
/// @param[in] new_code A valid code for this protocol.
/// @param[in] length Size of the array being passed in in bytes.
void IRBosch144AC::setRaw(const uint8_t new_code[], const uint16_t length) {
const uint16_t len = min(length, kBosch144StateLength);
const uint16_t lenOff = sizeof(kBosch144Off);
// Is it an off message?
if (memcmp(kBosch144Off, new_code, min(lenOff, len)) == 0)
setPower(false); // It is.
else
setPower(true);
memcpy(_.raw, new_code, len);
}
void IRBosch144AC::setPower(const bool on) {
powerFlag = on;
}
bool IRBosch144AC::getPower(void) const {
return powerFlag;
}
void IRBosch144AC::setTempRaw(const uint8_t code) {
_.TempS1 = _.TempS2 = code >> 1; // save 4 bits in S1 and S2
_.TempS3 = code & 1; // save 1 bit in Section3
}
/// Set the temperature.
/// @param[in] degrees The temperature in degrees celsius.
void IRBosch144AC::setTemp(const uint8_t degrees) {
uint8_t temp = max(kBosch144TempMin, degrees);
temp = min(kBosch144TempMax, temp);
setTempRaw(kBosch144TempMap[temp - kBosch144TempMin]);
}
uint8_t IRBosch144AC::getTemp(void) const {
uint8_t temp = (_.TempS1 << 1) + _.TempS3;
uint8_t retemp = 25;
for (uint8_t i = 0; i < kBosch144TempRange; i++) {
if (temp == kBosch144TempMap[i]) {
retemp = kBosch144TempMin + i;
}
}
return retemp;
}
/// Set the speed of the fan.
/// @param[in] speed The desired setting.
void IRBosch144AC::setFan(const uint16_t speed) {
_.FanS1 = _.FanS2 = speed >> 6; // save 3 bits in S1 and S2
_.FanS3 = speed & 0b111111; // save 6 bits in Section3
}
uint16_t IRBosch144AC::getFan(void) const {
return (_.FanS1 << 6) + _.FanS3;
}
/// Set the desired operation mode.
/// @param[in] mode The desired operation mode.
void IRBosch144AC::setMode(const uint8_t mode) {
_.ModeS1 = _.ModeS2 = mode >> 1; // save 2 bits in S1 and S2
_.ModeS3 = mode & 0b1; // save 1 bit in Section3
if (mode == kBosch144Auto || mode == kBosch144Dry) {
_.FanS1 = _.FanS2 = 0b000; // save 3 bits in S1 and S2
_.FanS3 = kBosch144FanAuto0; // save 6 bits in Section3
}
}
uint8_t IRBosch144AC::getMode(void) const {
return (_.ModeS1 << 1) + _.ModeS3;
}
/// Set the Quiet mode of the A/C.
/// @param[in] on true, the setting is on. false, the setting is off.
void IRBosch144AC::setQuiet(const bool on) {
_.Quiet = on; // save 1 bit in Section3
setFan(kBosch144FanAuto); // set Fan -> Auto
}
/// Get the Quiet mode of the A/C.
/// @return true, the setting is on. false, the setting is off.
bool IRBosch144AC::getQuiet(void) const { return _.Quiet; }
/// Convert a stdAc::opmode_t enum into its native mode.
/// @param[in] mode The enum to be converted.
/// @return The native equivalent of the enum.
uint8_t IRBosch144AC::convertMode(const stdAc::opmode_t mode) {
switch (mode) {
case stdAc::opmode_t::kCool:
return kBosch144Cool;
case stdAc::opmode_t::kHeat:
return kBosch144Heat;
case stdAc::opmode_t::kDry:
return kBosch144Dry;
case stdAc::opmode_t::kFan:
return kBosch144Fan;
default:
return kBosch144Auto;
}
}
/// Convert a stdAc::fanspeed_t enum into it's native speed.
/// @param[in] speed The enum to be converted.
/// @return The native equivalent of the enum.
uint16_t IRBosch144AC::convertFan(const stdAc::fanspeed_t speed) {
switch (speed) {
case stdAc::fanspeed_t::kMin:
return kBosch144Fan20;
case stdAc::fanspeed_t::kLow:
return kBosch144Fan40;
case stdAc::fanspeed_t::kMedium:
return kBosch144Fan60;
case stdAc::fanspeed_t::kHigh:
return kBosch144Fan80;
case stdAc::fanspeed_t::kMax:
return kBosch144Fan100;
default:
return kBosch144FanAuto;
}
}
/// Convert a native mode into its stdAc equivalent.
/// @param[in] mode The native setting to be converted.
/// @return The stdAc equivalent of the native setting.
stdAc::opmode_t IRBosch144AC::toCommonMode(const uint8_t mode) {
switch (mode) {
case kBosch144Cool: return stdAc::opmode_t::kCool;
case kBosch144Heat: return stdAc::opmode_t::kHeat;
case kBosch144Dry: return stdAc::opmode_t::kDry;
case kBosch144Fan: return stdAc::opmode_t::kFan;
default: return stdAc::opmode_t::kAuto;
}
}
/// Convert a native fan speed into its stdAc equivalent.
/// @param[in] speed The native setting to be converted.
/// @return The stdAc equivalent of the native setting.
stdAc::fanspeed_t IRBosch144AC::toCommonFanSpeed(const uint16_t speed) {
switch (speed) {
case kBosch144Fan100: return stdAc::fanspeed_t::kMax;
case kBosch144Fan80: return stdAc::fanspeed_t::kHigh;
case kBosch144Fan60: return stdAc::fanspeed_t::kMedium;
case kBosch144Fan40: return stdAc::fanspeed_t::kLow;
case kBosch144Fan20: return stdAc::fanspeed_t::kMin;
default: return stdAc::fanspeed_t::kAuto;
}
}
/// Convert the current internal state into its stdAc::state_t equivalent.
/// @return The stdAc equivalent of the native settings.
stdAc::state_t IRBosch144AC::toCommon(void) const {
stdAc::state_t result{};
result.protocol = decode_type_t::BOSCH144;
result.power = getPower();
result.mode = toCommonMode(getMode());
result.celsius = true;
result.degrees = getTemp();
result.fanspeed = toCommonFanSpeed(getFan());
result.quiet = getQuiet();
// Not supported.
result.model = -1;
result.turbo = false;
result.swingv = stdAc::swingv_t::kOff;
result.swingh = stdAc::swingh_t::kOff;
result.light = false;
result.filter = false;
result.econo = false;
result.clean = false;
result.beep = false;
result.clock = -1;
result.sleep = -1;
return result;
}
/// Convert the current internal state into a human readable string.
/// @return A human readable string.
String IRBosch144AC::toString(void) const {
uint8_t mode = getMode();
uint8_t fan = static_cast<int>(toCommonFanSpeed(getFan()));
String result = "";
result.reserve(70); // Reserve some heap for the string to reduce fragging.
result += addBoolToString(getPower(), kPowerStr, false);
result += addModeToString(mode, kBosch144Auto, kBosch144Cool,
kBosch144Heat, kBosch144Dry, kBosch144Fan);
result += addFanToString(fan, static_cast<int>(stdAc::fanspeed_t::kMax),
static_cast<int>(stdAc::fanspeed_t::kMin),
static_cast<int>(stdAc::fanspeed_t::kAuto),
static_cast<int>(stdAc::fanspeed_t::kAuto),
static_cast<int>(stdAc::fanspeed_t::kMedium));
result += addTempToString(getTemp());
result += addBoolToString(_.Quiet, kQuietStr);
return result;
}
void IRBosch144AC::setInvertBytes() {
for (uint8_t i = 0; i <= 10; i += 2) {
_.raw[i + 1] = ~_.raw[i];
}
}
void IRBosch144AC::setCheckSumS3() {
_.ChecksumS3 = sumBytes(&(_.raw[12]), 5);
}
#if DECODE_BOSCH144
/// Decode the supplied Bosch 144-bit / 18-byte A/C message.
/// Status: STABLE / Confirmed Working.
/// @param[in,out] results Ptr to the data to decode & where to store the decode
/// result.
/// @param[in] offset The starting index to use when attempting to decode the
/// raw data. Typically/Defaults to kStartOffset.
/// @param[in] nbits The number of data bits to expect.
/// @param[in] strict Flag indicating if we should perform strict matching.
/// @return A boolean. True if it can decode it, false if it can't.
bool IRrecv::decodeBosch144(decode_results *results, uint16_t offset,
const uint16_t nbits, const bool strict) {
if (results->rawlen < 2 * nbits +
kBosch144NrOfSections * (kHeader + kFooter) -
1 + offset)
return false; // Can't possibly be a valid BOSCH144 message.
if (strict && nbits != kBosch144Bits)
return false; // Not strictly a BOSCH144 message.
if (nbits % 8 != 0) // nbits has to be a multiple of nr. of bits in a byte.
return false;
if (nbits % kBosch144NrOfSections != 0)
return false; // nbits has to be a multiple of kBosch144NrOfSections.
const uint16_t kSectionBits = nbits / kBosch144NrOfSections;
const uint16_t kSectionBytes = kSectionBits / 8;
const uint16_t kNBytes = kSectionBytes * kBosch144NrOfSections;
// Capture each section individually
for (uint16_t pos = 0, section = 0;
pos < kNBytes;
pos += kSectionBytes, section++) {
uint16_t used = 0;
// Section Header + Section Data + Section Footer
used = matchGeneric(results->rawbuf + offset, results->state + pos,
results->rawlen - offset, kSectionBits,
kBoschHdrMark, kBoschHdrSpace,
kBoschBitMark, kBoschOneSpace,
kBoschBitMark, kBoschZeroSpace,
kBoschBitMark, kBoschFooterSpace,
section >= kBosch144NrOfSections - 1,
_tolerance, kMarkExcess, true);
if (!used) return false; // Didn't match.
offset += used;
}
// Compliance
// Success
results->decode_type = decode_type_t::BOSCH144;
results->bits = nbits;
// No need to record the state as we stored it as we decoded it.
// As we use result->state, we don't record value, address, or command as it
// is a union data type.
return true;
}
#endif // DECODE_BOSCH144