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


| Public Member Functions | |
| IRHaierAC176 (const uint16_t pin, const bool inverted=false, const bool use_modulation=true) | |
| Class constructor.  More... | |
| virtual void | send (const uint16_t repeat=kHaierAc176DefaultRepeat) | 
| 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 | stateReset (void) | 
| Reset the internal state to a fixed known good state.  More... | |
| void | setModel (const haier_ac176_remote_model_t model) | 
| Set the model of the A/C to emulate.  More... | |
| haier_ac176_remote_model_t | getModel (void) const | 
| Get/Detect the model of the A/C.  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 | setUseFahrenheit (const bool on) | 
| Set the default temperature units to use.  More... | |
| bool | getUseFahrenheit (void) const | 
| Get the default temperature units in use.  More... | |
| void | setTemp (const uint8_t temp, const bool fahrenheit=false) | 
| Set the temperature.  More... | |
| uint8_t | getTemp (void) const | 
| Get the current temperature setting. The unit of temperature is specified by UseFahrenheit value.  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... | |
| bool | getTurbo (void) const | 
| Get the Turbo setting of the A/C.  More... | |
| void | setTurbo (const bool on) | 
| Set the Turbo setting of the A/C.  More... | |
| bool | getQuiet (void) const | 
| Get the Quiet setting of the A/C.  More... | |
| void | setQuiet (const bool on) | 
| Set the Quiet setting of the A/C.  More... | |
| uint8_t | getSwingV (void) const | 
| Get the Vertical Swing position setting of the A/C.  More... | |
| void | setSwingV (const uint8_t pos) | 
| Set the Vertical Swing mode of the A/C.  More... | |
| uint8_t | getSwingH (void) const | 
| Get the Horizontal Swing position setting of the A/C.  More... | |
| void | setSwingH (const uint8_t pos) | 
| Set the Horizontal Swing mode of the A/C.  More... | |
| uint8_t | getSwing (void) const | 
| These functions are for backward compatibility. Use getSwingV() and setSwingV() instead.  More... | |
| void | setSwing (const uint8_t pos) | 
| For backward compatibility. Use setSwingV() instead. Set the Vertical Swing mode of the A/C.  More... | |
| void | setTimerMode (const uint8_t setting) | 
| Set the Timer operating mode.  More... | |
| uint8_t | getTimerMode (void) const | 
| Get the Timer operating mode.  More... | |
| void | setOnTimer (const uint16_t mins) | 
| Set the number of minutes of the On Timer setting.  More... | |
| uint16_t | getOnTimer (void) const | 
| Get the number of minutes of the On Timer setting.  More... | |
| void | setOffTimer (const uint16_t mins) | 
| Set the number of minutes of the Off Timer setting.  More... | |
| uint16_t | getOffTimer (void) const | 
| Get the number of minutes of the Off Timer setting.  More... | |
| bool | getLock (void) const | 
| Get the Lock setting of the A/C.  More... | |
| void | setLock (const bool on) | 
| Set the Lock setting of the A/C.  More... | |
| uint8_t * | getRaw (void) | 
| Get a PTR to the internal state/code for this protocol.  More... | |
| virtual 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 (const uint8_t state[], const uint16_t length=kHaierAC176StateLength) | 
| 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 uint8_t | convertSwingH (const stdAc::swingh_t position) | 
| Convert a stdAc::swingh_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... | |
| static stdAc::swingh_t | toCommonSwingH (const uint8_t pos) | 
| Convert a stdAc::swingh_t enum into it's native setting.  More... | |
| static bool | toCommonTurbo (const uint8_t speed) | 
| static bool | toCommonQuiet (const uint8_t speed) | 
| Private Member Functions | |
| 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... | |
| HaierAc176Protocol | _ | 
| Friends | |
| class | IRHaierACYRW02 | 
Class for handling detailed Haier 176 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 IRHaierAC176::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::swingh_t enum into it's native setting.
| [in] | position | 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 IRHaierAC176::getButton | ( | void | ) | const | 
Get the Button/Command setting of the A/C.
| uint8_t IRHaierAC176::getFan | ( | void | ) | const | 
Get the current fan speed setting.
| bool IRHaierAC176::getHealth | ( | void | ) | const | 
Get the Health (filter) setting of the A/C.
| bool IRHaierAC176::getLock | ( | void | ) | const | 
Get the Lock setting of the A/C.
| uint8_t IRHaierAC176::getMode | ( | void | ) | const | 
Get the operating mode setting of the A/C.
| haier_ac176_remote_model_t IRHaierAC176::getModel | ( | void | ) | const | 
Get/Detect the model of the A/C.
| uint16_t IRHaierAC176::getOffTimer | ( | void | ) | const | 
Get the number of minutes of the Off Timer setting.
| uint16_t IRHaierAC176::getOnTimer | ( | void | ) | const | 
Get the number of minutes of the On Timer setting.
| bool IRHaierAC176::getPower | ( | void | ) | const | 
Get the value of the current power setting.
| bool IRHaierAC176::getQuiet | ( | void | ) | const | 
Get the Quiet setting of the A/C.
| uint8_t * IRHaierAC176::getRaw | ( | void | ) | 
Get a PTR to the internal state/code for this protocol.
| bool IRHaierAC176::getSleep | ( | void | ) | const | 
Get the Sleep setting of the A/C.
| uint8_t IRHaierAC176::getSwing | ( | void | ) | const | 
These functions are for backward compatibility. Use getSwingV() and setSwingV() instead.
For backward compatibility. Use getSwingV() instead. Get the Vertical Swing position setting of the A/C.
| uint8_t IRHaierAC176::getSwingH | ( | void | ) | const | 
Get the Horizontal Swing position setting of the A/C.
| uint8_t IRHaierAC176::getSwingV | ( | void | ) | const | 
Get the Vertical Swing position setting of the A/C.
| uint8_t IRHaierAC176::getTemp | ( | void | ) | const | 
Get the current temperature setting. The unit of temperature is specified by UseFahrenheit value.
| uint8_t IRHaierAC176::getTimerMode | ( | void | ) | const | 
Get the Timer operating mode.
| bool IRHaierAC176::getTurbo | ( | void | ) | const | 
Get the Turbo setting of the A/C.
| bool IRHaierAC176::getUseFahrenheit | ( | void | ) | const | 
Get the default temperature units in use.
| void IRHaierAC176::off | ( | void | ) | 
Change the power setting to Off.
| void IRHaierAC176::on | ( | void | ) | 
Change the power setting to On.
| 
 | virtual | 
Send the current internal state as an IR message.
| [in] | repeat | Nr. of times the message will be repeated. | 
Reimplemented in IRHaierACYRW02.
| void IRHaierAC176::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 IRHaierAC176::setFan | ( | const uint8_t | speed | ) | 
Set the speed of the fan.
| [in] | speed | The desired setting. | 
| void IRHaierAC176::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 IRHaierAC176::setLock | ( | const bool | on | ) | 
Set the Lock setting of the A/C.
| [in] | on | true, the setting is on. false, the setting is off. | 
| void IRHaierAC176::setMode | ( | const uint8_t | mode | ) | 
Set the operating mode of the A/C.
| [in] | mode | The desired operating mode. | 
| void IRHaierAC176::setModel | ( | const haier_ac176_remote_model_t | model | ) | 
Set the model of the A/C to emulate.
| [in] | model | The enum of the appropriate model. | 
| void IRHaierAC176::setOffTimer | ( | const uint16_t | mins | ) | 
Set the number of minutes of the Off Timer setting.
| [in] | mins | Nr. of Minutes for the Timer. 0means disable the timer. | 
| void IRHaierAC176::setOnTimer | ( | const uint16_t | mins | ) | 
Set the number of minutes of the On Timer setting.
| [in] | mins | Nr. of Minutes for the Timer. 0means disable the timer. | 
| void IRHaierAC176::setPower | ( | const bool | on | ) | 
Change the power setting.
| [in] | on | true, the setting is on. false, the setting is off. | 
| void IRHaierAC176::setQuiet | ( | const bool | on | ) | 
Set the Quiet setting of the A/C.
| [in] | on | The desired Quiet setting. | 
| 
 | virtual | 
Set the internal state from a valid code for this protocol.
| [in] | new_code | A valid code for this protocol. | 
Reimplemented in IRHaierACYRW02.
| void IRHaierAC176::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 IRHaierAC176::setSwing | ( | const uint8_t | pos | ) | 
For backward compatibility. Use setSwingV() instead. Set the Vertical Swing mode of the A/C.
| [in] | pos | The position/mode to set the vanes to. | 
| void IRHaierAC176::setSwingH | ( | const uint8_t | pos | ) | 
Set the Horizontal Swing mode of the A/C.
| [in] | pos | The position/mode to set the vanes to. | 
| void IRHaierAC176::setSwingV | ( | const uint8_t | pos | ) | 
Set the Vertical Swing mode of the A/C.
| [in] | pos | The position/mode to set the vanes to. | 
| void IRHaierAC176::setTemp | ( | const uint8_t | degree, | 
| const bool | fahrenheit = false | ||
| ) | 
Set the temperature.
| [in] | degree | The temperature in degrees. | 
| [in] | fahrenheit | Use units of Fahrenheit and set that as units used. | 
| void IRHaierAC176::setTimerMode | ( | const uint8_t | mode | ) | 
Set the Timer operating mode.
| [in] | mode | The timer mode to use. | 
| void IRHaierAC176::setTurbo | ( | const bool | on | ) | 
Set the Turbo setting of the A/C.
| [in] | on | The desired turbo setting. | 
| void IRHaierAC176::setUseFahrenheit | ( | const bool | on | ) | 
Set the default temperature units to use.
| [in] | on | Use Fahrenheit as the units. true is Fahrenheit, false is Celsius. | 
| void IRHaierAC176::stateReset | ( | void | ) | 
Reset the internal state to a fixed known good state.
| stdAc::state_t IRHaierAC176::toCommon | ( | void | ) | const | 
Convert the current internal state into its stdAc::state_t equivalent.
| 
 | static | 
| 
 | static | 
| 
 | static | 
| 
 | static | 
Convert a stdAc::swingh_t enum into it's native setting.
| [in] | pos | The enum to be converted. | 
| 
 | static | 
Convert a stdAc::swingv_t enum into it's native setting.
| [in] | pos | The enum to be converted. | 
| 
 | static | 
| String IRHaierAC176::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. | 
| 
 | friend | 
| 
 | private | 
| 
 | private | 
Instance of the IR send class.
 1.8.17
 1.8.17