Tasmota/lib/lib_basic/IRremoteESP8266/src/ir_Delonghi.cpp
2021-03-25 08:40:27 +01:00

471 lines
16 KiB
C++

// Copyright 2020 David Conran
/// @file
/// @brief Delonghi based protocol.
#include "ir_Delonghi.h"
#include "IRrecv.h"
#include "IRsend.h"
#include "IRtext.h"
#include "IRutils.h"
#include <algorithm>
using irutils::addBoolToString;
using irutils::addModeToString;
using irutils::addFanToString;
using irutils::addLabeledString;
using irutils::addTempToString;
using irutils::minsToString;
const uint16_t kDelonghiAcHdrMark = 8984;
const uint16_t kDelonghiAcBitMark = 572;
const uint16_t kDelonghiAcHdrSpace = 4200;
const uint16_t kDelonghiAcOneSpace = 1558;
const uint16_t kDelonghiAcZeroSpace = 510;
const uint32_t kDelonghiAcGap = kDefaultMessageGap; // A totally made-up guess.
const uint16_t kDelonghiAcFreq = 38000; // Hz. (Guess: most common frequency.)
const uint16_t kDelonghiAcOverhead = 3;
#if SEND_DELONGHI_AC
/// Send a Delonghi A/C formatted message.
/// Status: STABLE / Reported as working on a real device.
/// @param[in] data The message to be sent.
/// @param[in] nbits The number of bits of message to be sent.
/// @param[in] repeat The number of times the command is to be repeated.
/// @see https://github.com/crankyoldgit/IRremoteESP8266/issues/1096
void IRsend::sendDelonghiAc(const uint64_t data, const uint16_t nbits,
const uint16_t repeat) {
sendGeneric(kDelonghiAcHdrMark, kDelonghiAcHdrSpace,
kDelonghiAcBitMark, kDelonghiAcOneSpace,
kDelonghiAcBitMark, kDelonghiAcZeroSpace,
kDelonghiAcBitMark, kDelonghiAcGap,
data, nbits, kDelonghiAcFreq, false, // LSB First.
repeat, kDutyDefault);
}
#endif // SEND_DELONGHI_AC
#if DECODE_DELONGHI_AC
/// Decode the supplied Delonghi A/C message.
/// Status: STABLE / Expected to be 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.
/// @see https://github.com/crankyoldgit/IRremoteESP8266/issues/1096
bool IRrecv::decodeDelonghiAc(decode_results *results, uint16_t offset,
const uint16_t nbits, const bool strict) {
if (results->rawlen < 2 * nbits + kDelonghiAcOverhead - offset)
return false; // Too short a message to match.
if (strict && nbits != kDelonghiAcBits)
return false;
uint64_t data = 0;
// Header + Data + Footer
if (!matchGeneric(results->rawbuf + offset, &data,
results->rawlen - offset, nbits,
kDelonghiAcHdrMark, kDelonghiAcHdrSpace,
kDelonghiAcBitMark, kDelonghiAcOneSpace,
kDelonghiAcBitMark, kDelonghiAcZeroSpace,
kDelonghiAcBitMark, kDelonghiAcGap, true,
_tolerance, kMarkExcess, false)) return false;
// Compliance
if (strict && !IRDelonghiAc::validChecksum(data)) return false;
// Success
results->decode_type = decode_type_t::DELONGHI_AC;
results->bits = nbits;
results->value = data;
results->command = 0;
results->address = 0;
return true;
}
#endif // DECODE_DELONGHI_AC
/// 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?
IRDelonghiAc::IRDelonghiAc(const uint16_t pin, const bool inverted,
const bool use_modulation)
: _irsend(pin, inverted, use_modulation) { stateReset(); }
/// Set up hardware to be able to send a message.
void IRDelonghiAc::begin(void) { _irsend.begin(); }
#if SEND_DELONGHI_AC
/// Send the current internal state as an IR message.
/// @param[in] repeat Nr. of times the message will be repeated.
void IRDelonghiAc::send(const uint16_t repeat) {
_irsend.sendDelonghiAc(getRaw(), kDelonghiAcBits, repeat);
}
#endif // SEND_DELONGHI_AC
/// Calculate the checksum for a given state.
/// @param[in] state The value to calc the checksum of.
/// @return A valid checksum value.
uint8_t IRDelonghiAc::calcChecksum(const uint64_t state) {
uint8_t sum = 0;
// Add up all the 8 bit chunks except for Most-significant 8 bits.
for (uint8_t offset = 0; offset < kDelonghiAcChecksumOffset; offset += 8) {
sum += GETBITS64(state, offset, 8);
}
return sum;
}
/// Verify the checksum is valid for a given state.
/// @param[in] state The state to verify the checksum of.
/// @return true, if the state has a valid checksum. Otherwise, false.
bool IRDelonghiAc::validChecksum(const uint64_t state) {
DelonghiProtocol dp;
dp.raw = state;
return (dp.Sum == IRDelonghiAc::calcChecksum(state));
}
/// Calculate and set the checksum values for the internal state.
void IRDelonghiAc::checksum(void) {
_.Sum = calcChecksum(_.raw);
}
/// Reset the internal state to a fixed known good state.
void IRDelonghiAc::stateReset(void) {
_.raw = 0x5400000000000153;
_saved_temp = 23; // DegC (Random reasonable default value)
_saved_temp_units = 0; // Celsius
}
/// 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.
uint64_t IRDelonghiAc::getRaw(void) {
checksum(); // Ensure correct bit array before returning
return _.raw;
}
/// Set the internal state from a valid code for this protocol.
/// @param[in] state A valid code for this protocol.
void IRDelonghiAc::setRaw(const uint64_t state) { _.raw = state; }
/// Change the power setting to On.
void IRDelonghiAc::on(void) { setPower(true); }
/// Change the power setting to Off.
void IRDelonghiAc::off(void) { setPower(false); }
/// Change the power setting.
/// @param[in] on true, the setting is on. false, the setting is off.
void IRDelonghiAc::setPower(const bool on) {
_.Power = on;
}
/// Get the value of the current power setting.
/// @return true, the setting is on. false, the setting is off.
bool IRDelonghiAc::getPower(void) const {
return _.Power;
}
/// Change the temperature scale units.
/// @param[in] fahrenheit true, use Fahrenheit. false, use Celsius.
void IRDelonghiAc::setTempUnit(const bool fahrenheit) {
_.Fahrenheit = fahrenheit;
}
/// Get the temperature scale unit of measure currently in use.
/// @return true, is Fahrenheit. false, is Celsius.
bool IRDelonghiAc::getTempUnit(void) const {
return _.Fahrenheit;
}
/// Set the temperature.
/// @param[in] degrees The temperature in degrees.
/// @param[in] fahrenheit Use Fahrenheit as the temperature scale.
/// @param[in] force Do we ignore any sanity checks?
void IRDelonghiAc::setTemp(const uint8_t degrees, const bool fahrenheit,
const bool force) {
uint8_t temp;
if (force) {
temp = degrees; // We've been asked to force set this value.
} else {
uint8_t temp_min = kDelonghiAcTempMinC;
uint8_t temp_max = kDelonghiAcTempMaxC;
setTempUnit(fahrenheit);
if (fahrenheit) {
temp_min = kDelonghiAcTempMinF;
temp_max = kDelonghiAcTempMaxF;
}
temp = std::max(temp_min, degrees);
temp = std::min(temp_max, temp);
_saved_temp = temp;
_saved_temp_units = fahrenheit;
temp = temp - temp_min + 1;
}
_.Temp = temp;
}
/// Get the current temperature setting.
/// @return The current setting for temp. in currently configured units/scale.
uint8_t IRDelonghiAc::getTemp(void) const {
return _.Temp + (_.Fahrenheit ? kDelonghiAcTempMinF
: kDelonghiAcTempMinC) - 1;
}
/// Set the speed of the fan.
/// @param[in] speed The desired native setting.
void IRDelonghiAc::setFan(const uint8_t speed) {
// Mode fan speed rules.
switch (_.Mode) {
case kDelonghiAcFan:
// Fan mode can't have auto fan speed.
if (speed == kDelonghiAcFanAuto) {
if (_.Fan == kDelonghiAcFanAuto) _.Fan = kDelonghiAcFanHigh;
return;
}
break;
case kDelonghiAcAuto:
case kDelonghiAcDry:
// Auto & Dry modes only allows auto fan speed.
if (speed != kDelonghiAcFanAuto) {
_.Fan = kDelonghiAcFanAuto;
return;
}
break;
}
// Bounds check enforcement
if (speed > kDelonghiAcFanLow)
_.Fan = kDelonghiAcFanAuto;
else
_.Fan = speed;
}
/// Get the current native fan speed setting.
/// @return The current fan speed.
uint8_t IRDelonghiAc::getFan(void) const {
return _.Fan;
}
/// 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.
uint8_t IRDelonghiAc::convertFan(const stdAc::fanspeed_t speed) {
switch (speed) {
case stdAc::fanspeed_t::kMin:
case stdAc::fanspeed_t::kLow:
return kDelonghiAcFanLow;
case stdAc::fanspeed_t::kMedium:
return kDelonghiAcFanMedium;
case stdAc::fanspeed_t::kHigh:
case stdAc::fanspeed_t::kMax:
return kDelonghiAcFanHigh;
default:
return kDelonghiAcFanAuto;
}
}
/// 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 IRDelonghiAc::toCommonFanSpeed(const uint8_t speed) {
switch (speed) {
case kDelonghiAcFanHigh: return stdAc::fanspeed_t::kMax;
case kDelonghiAcFanMedium: return stdAc::fanspeed_t::kMedium;
case kDelonghiAcFanLow: return stdAc::fanspeed_t::kMin;
default: return stdAc::fanspeed_t::kAuto;
}
}
/// Get the operating mode setting of the A/C.
/// @return The current operating mode setting.
uint8_t IRDelonghiAc::getMode(void) const {
return _.Mode;
}
/// Set the operating mode of the A/C.
/// @param[in] mode The desired native operating mode.
void IRDelonghiAc::setMode(const uint8_t mode) {
_.Mode = mode;
switch (mode) {
case kDelonghiAcAuto:
case kDelonghiAcDry:
// Set special temp for these modes.
setTemp(kDelonghiAcTempAutoDryMode, _.Fahrenheit, true);
break;
case kDelonghiAcFan:
// Set special temp for this mode.
setTemp(kDelonghiAcTempFanMode, _.Fahrenheit, true);
break;
case kDelonghiAcCool:
// Restore previous temp settings for cool mode.
setTemp(_saved_temp, _saved_temp_units);
break;
default:
_.Mode = kDelonghiAcAuto;
setTemp(kDelonghiAcTempAutoDryMode, _.Fahrenheit, true);
break;
}
setFan(_.Fan); // Re-force any fan speed constraints.
}
/// 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 IRDelonghiAc::convertMode(const stdAc::opmode_t mode) {
switch (mode) {
case stdAc::opmode_t::kCool:
return kDelonghiAcCool;
case stdAc::opmode_t::kDry:
return kDelonghiAcDry;
case stdAc::opmode_t::kFan:
return kDelonghiAcFan;
default:
return kDelonghiAcAuto;
}
}
/// 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 IRDelonghiAc::toCommonMode(const uint8_t mode) {
switch (mode) {
case kDelonghiAcCool: return stdAc::opmode_t::kCool;
case kDelonghiAcDry: return stdAc::opmode_t::kDry;
case kDelonghiAcFan: return stdAc::opmode_t::kFan;
default: return stdAc::opmode_t::kAuto;
}
}
/// Set the Boost (Turbo) mode of the A/C.
/// @param[in] on true, the setting is on. false, the setting is off.
void IRDelonghiAc::setBoost(const bool on) {
_.Boost = on;
}
/// Get the Boost (Turbo) mode of the A/C.
/// @return true, the setting is on. false, the setting is off.
bool IRDelonghiAc::getBoost(void) const {
return _.Boost;
}
/// Set the Sleep mode of the A/C.
/// @param[in] on true, the setting is on. false, the setting is off.
void IRDelonghiAc::setSleep(const bool on) {
_.Sleep = on;
}
/// Get the Sleep mode status of the A/C.
/// @return true, the setting is on. false, the setting is off.
bool IRDelonghiAc::getSleep(void) const {
return _.Sleep;
}
/// Set the enable status of the On Timer.
/// @param[in] on true, the setting is on. false, the setting is off.
void IRDelonghiAc::setOnTimerEnabled(const bool on) {
_.OnTimer = on;
}
/// Get the enable status of the On Timer.
/// @return true, the setting is on. false, the setting is off.
bool IRDelonghiAc::getOnTimerEnabled(void) const {
return _.OnTimer;
}
/// Set the On timer to activate in nr of minutes.
/// @param[in] nr_of_mins Total nr of mins to wait before waking the device.
/// @note Max 23 hrs and 59 minutes. i.e. 1439 mins.
void IRDelonghiAc::setOnTimer(const uint16_t nr_of_mins) {
uint16_t value = std::min(kDelonghiAcTimerMax, nr_of_mins);
_.OnMins = value % 60;
_.OnHours = value / 60;
// Enable or not?
setOnTimerEnabled(value > 0);
}
/// Get the On timer time.
/// @return Total nr of mins before the device turns on.
uint16_t IRDelonghiAc::getOnTimer(void) const {
return _.OnHours * 60 + _.OnMins;
}
/// Set the enable status of the Off Timer.
/// @param[in] on true, the setting is on. false, the setting is off.
void IRDelonghiAc::setOffTimerEnabled(const bool on) {
_.OffTimer = on;
}
/// Get the enable status of the Off Timer.
/// @return true, the setting is on. false, the setting is off.
bool IRDelonghiAc::getOffTimerEnabled(void) const {
return _.OffTimer;
}
/// Set the Off timer to activate in nr of minutes.
/// @param[in] nr_of_mins Total nr of mins to wait before turning off the device
/// @note Max 23 hrs and 59 minutes. i.e. 1439 mins.
void IRDelonghiAc::setOffTimer(const uint16_t nr_of_mins) {
uint16_t value = std::min(kDelonghiAcTimerMax, nr_of_mins);
_.OffMins = value % 60;
_.OffHours = value / 60;
// Enable or not?
setOffTimerEnabled(value > 0);
}
/// Get the Off timer time.
/// @return Total nr of mins before the device turns off.
uint16_t IRDelonghiAc::getOffTimer(void) const {
return _.OffHours * 60 + _.OffMins;
}
/// Convert the current internal state into its stdAc::state_t equivalent.
/// @return The stdAc equivalent of the native settings.
stdAc::state_t IRDelonghiAc::toCommon(void) const {
stdAc::state_t result;
result.protocol = decode_type_t::DELONGHI_AC;
result.power = _.Power;
// result.mode = toCommonMode(getMode());
result.celsius = !_.Fahrenheit;
result.degrees = getTemp();
result.fanspeed = toCommonFanSpeed(_.Fan);
result.turbo = _.Boost;
result.sleep = _.Sleep ? 0 : -1;
// Not supported.
result.model = -1;
result.swingv = stdAc::swingv_t::kOff;
result.swingh = stdAc::swingh_t::kOff;
result.light = false;
result.filter = false;
result.econo = false;
result.quiet = false;
result.clean = false;
result.beep = false;
result.clock = -1;
return result;
}
/// Convert the current internal state into a human readable string.
/// @return A human readable string.
String IRDelonghiAc::toString(void) const {
String result = "";
result.reserve(80); // Reserve some heap for the string to reduce fragging.
result += addBoolToString(_.Power, kPowerStr, false);
result += addModeToString(_.Mode, kDelonghiAcAuto, kDelonghiAcCool,
kDelonghiAcAuto, kDelonghiAcDry, kDelonghiAcFan);
result += addFanToString(_.Fan, kDelonghiAcFanHigh, kDelonghiAcFanLow,
kDelonghiAcFanAuto, kDelonghiAcFanAuto,
kDelonghiAcFanMedium);
result += addTempToString(getTemp(), !_.Fahrenheit);
result += addBoolToString(_.Boost, kTurboStr);
result += addBoolToString(_.Sleep, kSleepStr);
uint16_t mins = getOnTimer();
result += addLabeledString((mins && _.OnTimer) ? minsToString(mins)
: kOffStr,
kOnTimerStr);
mins = getOffTimer();
result += addLabeledString((mins && _.OffTimer) ? minsToString(mins)
: kOffStr,
kOffTimerStr);
return result;
}