IRremoteESP8266
|
Class for handling detailed Haier A/C messages. More...
#include <ir_Haier.h>
Public Member Functions | |
IRHaierAC (const uint16_t pin, const bool inverted=false, const bool use_modulation=true) | |
Class constructor. More... | |
void | send (const uint16_t repeat=kHaierAcDefaultRepeat) |
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 | setCommand (const uint8_t command) |
Set the Command/Button setting of the A/C. More... | |
uint8_t | getCommand (void) const |
Get the Command/Button 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 | 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... | |
int16_t | getOnTimer (void) const |
Get the On Timer value/setting of the A/C. More... | |
void | setOnTimer (const uint16_t mins) |
Set & enable the On Timer. More... | |
int16_t | getOffTimer (void) const |
Get the Off Timer value/setting of the A/C. More... | |
void | setOffTimer (const uint16_t mins) |
Set & enable the Off Timer. More... | |
void | cancelTimers (void) |
Cancel/disable the On & Off timers. More... | |
uint16_t | getCurrTime (void) const |
Get the clock value of the A/C. More... | |
void | setCurrTime (const uint16_t mins) |
Set the clock value for 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 state) |
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=kHaierACStateLength) |
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... | |
HaierProtocol | _ |
Class for handling detailed Haier 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 IRHaierAC::begin | ( | void | ) |
Set up hardware to be able to send a message.
|
inline |
Run the calibration to calculate uSec timing offsets for this platform.
void IRHaierAC::cancelTimers | ( | void | ) |
Cancel/disable the On & Off timers.
|
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 IRHaierAC::getCommand | ( | void | ) | const |
Get the Command/Button setting of the A/C.
uint16_t IRHaierAC::getCurrTime | ( | void | ) | const |
Get the clock value of the A/C.
uint8_t IRHaierAC::getFan | ( | void | ) | const |
Get the current fan speed setting.
bool IRHaierAC::getHealth | ( | void | ) | const |
Get the Health (filter) setting of the A/C.
uint8_t IRHaierAC::getMode | ( | void | ) | const |
Get the operating mode setting of the A/C.
int16_t IRHaierAC::getOffTimer | ( | void | ) | const |
Get the Off Timer value/setting of the A/C.
int16_t IRHaierAC::getOnTimer | ( | void | ) | const |
Get the On Timer value/setting of the A/C.
uint8_t * IRHaierAC::getRaw | ( | void | ) |
Get a PTR to the internal state/code for this protocol.
bool IRHaierAC::getSleep | ( | void | ) | const |
Get the Sleep setting of the A/C.
uint8_t IRHaierAC::getSwing | ( | void | ) | const |
Get the Vertical Swing position setting of the A/C.
uint8_t IRHaierAC::getTemp | ( | void | ) | const |
Get the current temperature setting.
void IRHaierAC::send | ( | const uint16_t | repeat = kHaierAcDefaultRepeat | ) |
Send the current internal state as an IR message.
[in] | repeat | Nr. of times the message will be repeated. |
void IRHaierAC::setCommand | ( | const uint8_t | command | ) |
Set the Command/Button setting of the A/C.
[in] | command | The value of the command/button that was pressed. |
void IRHaierAC::setCurrTime | ( | const uint16_t | nr_mins | ) |
Set the clock value for the A/C.
[in] | nr_mins | The clock time, in Nr of minutes past midnight. |
void IRHaierAC::setFan | ( | const uint8_t | speed | ) |
Set the speed of the fan.
[in] | speed | The desired setting. |
void IRHaierAC::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 IRHaierAC::setMode | ( | const uint8_t | mode | ) |
Set the operating mode of the A/C.
[in] | mode | The desired operating mode. |
void IRHaierAC::setOffTimer | ( | const uint16_t | nr_mins | ) |
Set & enable the Off Timer.
[in] | nr_mins | The time expressed in total number of minutes. |
void IRHaierAC::setOnTimer | ( | const uint16_t | nr_mins | ) |
Set & enable the On Timer.
[in] | nr_mins | The time expressed in total number of minutes. |
void IRHaierAC::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 IRHaierAC::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 IRHaierAC::setSwing | ( | const uint8_t | state | ) |
Set the Vertical Swing mode of the A/C.
[in] | state | The mode to set the vanes to. |
void IRHaierAC::setTemp | ( | const uint8_t | degrees | ) |
Set the temperature.
[in] | degrees | The temperature in degrees celsius. |
|
private |
Reset the internal state to a fixed known good state.
stdAc::state_t IRHaierAC::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 IRHaierAC::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.