|
IRremoteESP8266
|
Class for handling detailed Haier ACYRW02 A/C messages. More...
#include <ir_Haier.h>

Public Member Functions | |
| IRHaierACYRW02 (const uint16_t pin, const bool inverted=false, const bool use_modulation=true) | |
| Class constructor. More... | |
| void | send (const uint16_t repeat=kHaierAcYrw02DefaultRepeat) |
| 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 | setButton (const uint8_t button) |
| Set the Button/Command setting of the A/C. More... | |
| uint8_t | getButton (void) const |
| Get the Button/Command setting of the A/C. 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 speed) |
| Set the speed of the fan. More... | |
| uint8_t | getFan (void) const |
| Get the current fan speed setting. More... | |
| uint8_t | getMode (void) const |
| Get the operating mode setting of the A/C. More... | |
| void | setMode (const uint8_t mode) |
| Set the operating mode of the A/C. More... | |
| bool | getPower (void) const |
| Get the value of the current power setting. More... | |
| void | setPower (const bool on) |
| Change the power setting. More... | |
| void | on (void) |
| Change the power setting to On. More... | |
| void | off (void) |
| Change the power setting to Off. More... | |
| bool | getSleep (void) const |
| Get the Sleep setting of the A/C. More... | |
| void | setSleep (const bool on) |
| Set the Sleep setting of the A/C. More... | |
| bool | getHealth (void) const |
| Get the Health (filter) setting of the A/C. More... | |
| void | setHealth (const bool on) |
| Set the Health (filter) setting of the A/C. More... | |
| uint8_t | getTurbo (void) const |
| Get the Turbo setting of the A/C. More... | |
| void | setTurbo (const uint8_t speed) |
| Set the Turbo setting of the A/C. More... | |
| uint8_t | getSwing (void) const |
| Get the Vertical Swing position setting of the A/C. More... | |
| void | setSwing (const uint8_t pos) |
| Set the Vertical Swing mode of the A/C. More... | |
| uint8_t * | getRaw (void) |
| Get a PTR to the internal state/code for this protocol. More... | |
| void | setRaw (const uint8_t new_code[]) |
| 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=kHaierACYRW02StateLength) |
| 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 uint8_t | convertSwingV (const stdAc::swingv_t position) |
| Convert a stdAc::swingv_t enum into it's native setting. 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... | |
| static stdAc::swingv_t | toCommonSwingV (const uint8_t pos) |
| Convert a stdAc::swingv_t enum into it's native setting. 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... | |
| HaierYRW02Protocol | _ |
Class for handling detailed Haier ACYRW02 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 IRHaierACYRW02::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. |
|
static |
Convert a stdAc::swingv_t enum into it's native setting.
| [in] | position | The enum to be converted. |
| uint8_t IRHaierACYRW02::getButton | ( | void | ) | const |
Get the Button/Command setting of the A/C.
| uint8_t IRHaierACYRW02::getFan | ( | void | ) | const |
Get the current fan speed setting.
| bool IRHaierACYRW02::getHealth | ( | void | ) | const |
Get the Health (filter) setting of the A/C.
| uint8_t IRHaierACYRW02::getMode | ( | void | ) | const |
Get the operating mode setting of the A/C.
| bool IRHaierACYRW02::getPower | ( | void | ) | const |
Get the value of the current power setting.
| uint8_t * IRHaierACYRW02::getRaw | ( | void | ) |
Get a PTR to the internal state/code for this protocol.
| bool IRHaierACYRW02::getSleep | ( | void | ) | const |
Get the Sleep setting of the A/C.
| uint8_t IRHaierACYRW02::getSwing | ( | void | ) | const |
Get the Vertical Swing position setting of the A/C.
| uint8_t IRHaierACYRW02::getTemp | ( | void | ) | const |
Get the current temperature setting.
| uint8_t IRHaierACYRW02::getTurbo | ( | void | ) | const |
Get the Turbo setting of the A/C.
| void IRHaierACYRW02::off | ( | void | ) |
Change the power setting to Off.
| void IRHaierACYRW02::on | ( | void | ) |
Change the power setting to On.
| void IRHaierACYRW02::send | ( | const uint16_t | repeat = kHaierAcYrw02DefaultRepeat | ) |
Send the current internal state as an IR message.
| [in] | repeat | Nr. of times the message will be repeated. |
| void IRHaierACYRW02::setButton | ( | const uint8_t | button | ) |
Set the Button/Command setting of the A/C.
| [in] | button | The value of the button/command that was pressed. |
| void IRHaierACYRW02::setFan | ( | const uint8_t | speed | ) |
Set the speed of the fan.
| [in] | speed | The desired setting. |
| void IRHaierACYRW02::setHealth | ( | const bool | on | ) |
Set the Health (filter) setting of the A/C.
| [in] | on | true, the setting is on. false, the setting is off. |
| void IRHaierACYRW02::setMode | ( | const uint8_t | mode | ) |
Set the operating mode of the A/C.
| [in] | mode | The desired operating mode. |
| void IRHaierACYRW02::setPower | ( | const bool | on | ) |
Change the power setting.
| [in] | on | true, the setting is on. false, the setting is off. |
| void IRHaierACYRW02::setRaw | ( | const uint8_t | new_code[] | ) |
Set the internal state from a valid code for this protocol.
| [in] | new_code | A valid code for this protocol. |
| void IRHaierACYRW02::setSleep | ( | const bool | on | ) |
Set the Sleep setting of the A/C.
| [in] | on | true, the setting is on. false, the setting is off. |
| void IRHaierACYRW02::setSwing | ( | const uint8_t | pos | ) |
Set the Vertical Swing mode of the A/C.
| [in] | pos | The position/mode to set the vanes to. |
| void IRHaierACYRW02::setTemp | ( | const uint8_t | celsius | ) |
Set the temperature.
| [in] | celsius | The temperature in degrees celsius. |
| void IRHaierACYRW02::setTurbo | ( | const uint8_t | speed | ) |
Set the Turbo setting of the A/C.
| [in] | speed | The desired turbo speed setting. |
|
private |
Reset the internal state to a fixed known good state.
| stdAc::state_t IRHaierACYRW02::toCommon | ( | void | ) | const |
Convert the current internal state into its stdAc::state_t equivalent.
|
static |
|
static |
|
static |
Convert a stdAc::swingv_t enum into it's native setting.
| [in] | pos | The enum to be converted. |
| String IRHaierACYRW02::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.
1.8.17