IRremoteESP8266
|
Class for handling detailed Daikin 280-bit A/C messages. More...
#include <ir_Daikin.h>
Public Member Functions | |
IRDaikinESP (const uint16_t pin, const bool inverted=false, const bool use_modulation=true) | |
Class constructor. More... | |
void | send (const uint16_t repeat=kDaikinDefaultRepeat) |
Send the current internal state as an IR message. More... | |
int8_t | calibrate (void) |
Run the calibration to calculate uSec timing offsets for this platform. More... | |
void | begin (void) |
Set up hardware to be able to send a message. More... | |
void | on (void) |
Change the power setting to On. More... | |
void | off (void) |
Change the power setting to Off. More... | |
void | setPower (const bool on) |
Change the power setting. More... | |
bool | getPower (void) const |
Get the value of the current power setting. More... | |
void | setTemp (const uint8_t temp) |
Set the temperature. More... | |
uint8_t | getTemp (void) const |
Get the current temperature setting. More... | |
void | setFan (const uint8_t fan) |
Set the speed of the fan. More... | |
uint8_t | getFan (void) const |
Get the current fan speed setting. More... | |
void | setMode (const uint8_t mode) |
Set the operating mode of the A/C. More... | |
uint8_t | getMode (void) const |
Get the operating mode setting of the A/C. More... | |
void | setSwingVertical (const bool on) |
Set the Vertical Swing mode of the A/C. More... | |
bool | getSwingVertical (void) const |
Get the Vertical Swing mode of the A/C. More... | |
void | setSwingHorizontal (const bool on) |
Set the Horizontal Swing mode of the A/C. More... | |
bool | getSwingHorizontal (void) const |
Get the Horizontal Swing mode of the A/C. More... | |
bool | getQuiet (void) const |
Get the Quiet mode status of the A/C. More... | |
void | setQuiet (const bool on) |
Set the Quiet mode of the A/C. More... | |
bool | getPowerful (void) const |
Get the Powerful (Turbo) mode of the A/C. More... | |
void | setPowerful (const bool on) |
Set the Powerful (Turbo) mode of the A/C. More... | |
void | setSensor (const bool on) |
Set the Sensor mode of the A/C. More... | |
bool | getSensor (void) const |
Get the Sensor mode of the A/C. More... | |
void | setEcono (const bool on) |
Set the Economy mode of the A/C. More... | |
bool | getEcono (void) const |
Get the Economical mode of the A/C. More... | |
void | setMold (const bool on) |
Set the Mould mode of the A/C. More... | |
bool | getMold (void) const |
Get the Mould mode status of the A/C. More... | |
void | setComfort (const bool on) |
Set the Comfort mode of the A/C. More... | |
bool | getComfort (void) const |
Get the Comfort mode of the A/C. More... | |
void | enableOnTimer (const uint16_t starttime) |
Set the enable status & time of the On Timer. More... | |
void | disableOnTimer (void) |
Clear and disable the On timer. More... | |
uint16_t | getOnTime (void) const |
Get the On Timer time to be sent to the A/C unit. More... | |
bool | getOnTimerEnabled (void) const |
Get the enable status of the On Timer. More... | |
void | enableOffTimer (const uint16_t endtime) |
Set the enable status & time of the Off Timer. More... | |
void | disableOffTimer (void) |
Clear and disable the Off timer. More... | |
uint16_t | getOffTime (void) const |
Get the Off Timer time to be sent to the A/C unit. More... | |
bool | getOffTimerEnabled (void) const |
Get the enable status of the Off Timer. More... | |
void | setCurrentTime (const uint16_t mins_since_midnight) |
Set the clock on the A/C unit. More... | |
uint16_t | getCurrentTime (void) const |
Get the clock time to be sent to the A/C unit. More... | |
void | setCurrentDay (const uint8_t day_of_week) |
Set the current day of the week to be sent to the A/C unit. More... | |
uint8_t | getCurrentDay (void) const |
Get the current day of the week to be sent to the A/C unit. More... | |
void | setWeeklyTimerEnable (const bool on) |
Set the enable status of the Weekly Timer. More... | |
bool | getWeeklyTimerEnable (void) const |
Get the enable status of the Weekly Timer. More... | |
uint8_t * | getRaw (void) |
Get a PTR to the internal state/code for this protocol. More... | |
void | setRaw (const uint8_t new_code[], const uint16_t length=kDaikinStateLength) |
Set the internal state from a valid code for this protocol. More... | |
stdAc::state_t | toCommon (void) const |
Convert the current internal state into its stdAc::state_t equivalent. More... | |
String | toString (void) const |
Convert the current internal state into a human readable string. More... | |
Static Public Member Functions | |
static bool | validChecksum (uint8_t state[], const uint16_t length=kDaikinStateLength) |
Verify the checksum is valid for a given state. More... | |
static uint8_t | convertMode (const stdAc::opmode_t mode) |
Convert a stdAc::opmode_t enum into its native mode. More... | |
static uint8_t | convertFan (const stdAc::fanspeed_t speed) |
Convert a stdAc::fanspeed_t enum into it's native speed. More... | |
static stdAc::opmode_t | toCommonMode (const uint8_t mode) |
Convert a native mode into its stdAc equivalent. More... | |
static stdAc::fanspeed_t | toCommonFanSpeed (const uint8_t speed) |
Convert a native fan speed into its stdAc equivalent. More... | |
Private Member Functions | |
void | stateReset (void) |
Reset the internal state to a fixed known good state. More... | |
void | checksum (void) |
Calculate and set the checksum values for the internal state. More... | |
Private Attributes | |
IRsend | _irsend |
instance of the IR send class More... | |
DaikinESPProtocol | _ |
Class for handling detailed Daikin 280-bit A/C messages.
|
explicit |
Class constructor.
[in] | pin | GPIO to be used when sending. |
[in] | inverted | Is the output signal to be inverted? |
[in] | use_modulation | Is frequency modulation to be used? |
void IRDaikinESP::begin | ( | void | ) |
Set up hardware to be able to send a message.
|
inline |
Run the calibration to calculate uSec timing offsets for this platform.
|
private |
Calculate and set the checksum values for the internal state.
|
static |
Convert a stdAc::fanspeed_t enum into it's native speed.
[in] | speed | The enum to be converted. |
|
static |
Convert a stdAc::opmode_t enum into its native mode.
[in] | mode | The enum to be converted. |
void IRDaikinESP::disableOffTimer | ( | void | ) |
Clear and disable the Off timer.
void IRDaikinESP::disableOnTimer | ( | void | ) |
Clear and disable the On timer.
void IRDaikinESP::enableOffTimer | ( | const uint16_t | endtime | ) |
Set the enable status & time of the Off Timer.
[in] | endtime | The number of minutes past midnight. |
void IRDaikinESP::enableOnTimer | ( | const uint16_t | starttime | ) |
Set the enable status & time of the On Timer.
[in] | starttime | The number of minutes past midnight. |
bool IRDaikinESP::getComfort | ( | void | ) | const |
Get the Comfort mode of the A/C.
uint8_t IRDaikinESP::getCurrentDay | ( | void | ) | const |
Get the current day of the week to be sent to the A/C unit.
uint16_t IRDaikinESP::getCurrentTime | ( | void | ) | const |
Get the clock time to be sent to the A/C unit.
bool IRDaikinESP::getEcono | ( | void | ) | const |
Get the Economical mode of the A/C.
uint8_t IRDaikinESP::getFan | ( | void | ) | const |
Get the current fan speed setting.
uint8_t IRDaikinESP::getMode | ( | void | ) | const |
Get the operating mode setting of the A/C.
bool IRDaikinESP::getMold | ( | void | ) | const |
Get the Mould mode status of the A/C.
uint16_t IRDaikinESP::getOffTime | ( | void | ) | const |
Get the Off Timer time to be sent to the A/C unit.
bool IRDaikinESP::getOffTimerEnabled | ( | void | ) | const |
Get the enable status of the Off Timer.
uint16_t IRDaikinESP::getOnTime | ( | void | ) | const |
Get the On Timer time to be sent to the A/C unit.
bool IRDaikinESP::getOnTimerEnabled | ( | void | ) | const |
Get the enable status of the On Timer.
bool IRDaikinESP::getPower | ( | void | ) | const |
Get the value of the current power setting.
bool IRDaikinESP::getPowerful | ( | void | ) | const |
Get the Powerful (Turbo) mode of the A/C.
bool IRDaikinESP::getQuiet | ( | void | ) | const |
Get the Quiet mode status of the A/C.
uint8_t * IRDaikinESP::getRaw | ( | void | ) |
Get a PTR to the internal state/code for this protocol.
bool IRDaikinESP::getSensor | ( | void | ) | const |
Get the Sensor mode of the A/C.
bool IRDaikinESP::getSwingHorizontal | ( | void | ) | const |
Get the Horizontal Swing mode of the A/C.
bool IRDaikinESP::getSwingVertical | ( | void | ) | const |
Get the Vertical Swing mode of the A/C.
uint8_t IRDaikinESP::getTemp | ( | void | ) | const |
Get the current temperature setting.
bool IRDaikinESP::getWeeklyTimerEnable | ( | void | ) | const |
Get the enable status of the Weekly Timer.
void IRDaikinESP::off | ( | void | ) |
Change the power setting to Off.
void IRDaikinESP::on | ( | void | ) |
Change the power setting to On.
void IRDaikinESP::send | ( | const uint16_t | repeat = kDaikinDefaultRepeat | ) |
Send the current internal state as an IR message.
[in] | repeat | Nr. of times the message will be repeated. |
void IRDaikinESP::setComfort | ( | const bool | on | ) |
Set the Comfort mode of the A/C.
[in] | on | true, the setting is on. false, the setting is off. |
void IRDaikinESP::setCurrentDay | ( | const uint8_t | day_of_week | ) |
Set the current day of the week to be sent to the A/C unit.
[in] | day_of_week | The numerical representation of the day of the week. |
void IRDaikinESP::setCurrentTime | ( | const uint16_t | mins_since_midnight | ) |
Set the clock on the A/C unit.
[in] | mins_since_midnight | Nr. of minutes past midnight. |
void IRDaikinESP::setEcono | ( | const bool | on | ) |
Set the Economy mode of the A/C.
[in] | on | true, the setting is on. false, the setting is off. |
void IRDaikinESP::setFan | ( | const uint8_t | fan | ) |
Set the speed of the fan.
[in] | fan | The desired setting. |
void IRDaikinESP::setMode | ( | const uint8_t | mode | ) |
Set the operating mode of the A/C.
[in] | mode | The desired operating mode. |
void IRDaikinESP::setMold | ( | const bool | on | ) |
Set the Mould mode of the A/C.
[in] | on | true, the setting is on. false, the setting is off. |
void IRDaikinESP::setPower | ( | const bool | on | ) |
Change the power setting.
[in] | on | true, the setting is on. false, the setting is off. |
void IRDaikinESP::setPowerful | ( | const bool | on | ) |
Set the Powerful (Turbo) mode of the A/C.
[in] | on | true, the setting is on. false, the setting is off. |
void IRDaikinESP::setQuiet | ( | const bool | on | ) |
Set the Quiet mode of the A/C.
[in] | on | true, the setting is on. false, the setting is off. |
void IRDaikinESP::setRaw | ( | const uint8_t | new_code[], |
const uint16_t | length = kDaikinStateLength |
||
) |
Set the internal state from a valid code for this protocol.
[in] | new_code | A valid code for this protocol. |
[in] | length | Length of the code in bytes. |
void IRDaikinESP::setSensor | ( | const bool | on | ) |
Set the Sensor mode of the A/C.
[in] | on | true, the setting is on. false, the setting is off. |
void IRDaikinESP::setSwingHorizontal | ( | const bool | on | ) |
Set the Horizontal Swing mode of the A/C.
[in] | on | true, the setting is on. false, the setting is off. |
void IRDaikinESP::setSwingVertical | ( | const bool | on | ) |
Set the Vertical Swing mode of the A/C.
[in] | on | true, the setting is on. false, the setting is off. |
void IRDaikinESP::setTemp | ( | const uint8_t | temp | ) |
Set the temperature.
[in] | temp | The temperature in degrees celsius. |
void IRDaikinESP::setWeeklyTimerEnable | ( | const bool | on | ) |
Set the enable status of the Weekly Timer.
[in] | on | true, the setting is on. false, the setting is off. |
|
private |
Reset the internal state to a fixed known good state.
stdAc::state_t IRDaikinESP::toCommon | ( | void | ) | const |
Convert the current internal state into its stdAc::state_t equivalent.
|
static |
|
static |
String IRDaikinESP::toString | ( | void | ) | const |
Convert the current internal state into a human readable string.
|
static |
Verify the checksum is valid for a given state.
[in] | state | The array to verify the checksum of. |
[in] | length | The length of the state array. |
|
private |
|
private |
instance of the IR send class