| IRremoteESP8266
    | 
Class for handling detailed Coolix A/C messages. More...
#include <ir_Coolix.h>

| Public Member Functions | |
| IRCoolixAC (const uint16_t pin, const bool inverted=false, const bool use_modulation=true) | |
| Class constructor.  More... | |
| void | stateReset (void) | 
| Reset the internal state to a fixed known good state.  More... | |
| void | send (const uint16_t repeat=kCoolixDefaultRepeat) | 
| 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 | setSensorTemp (const uint8_t temp) | 
| Set the sensor temperature.  More... | |
| uint8_t | getSensorTemp (void) const | 
| Get the sensor temperature setting.  More... | |
| void | clearSensorTemp (void) | 
| Clear the Sensor Temperature setting..  More... | |
| void | setFan (const uint8_t speed, const bool modecheck=true) | 
| 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 | setSwing (void) | 
| Toggle the Swing mode of the A/C.  More... | |
| bool | getSwing (void) const | 
| Get the Swing setting of the A/C.  More... | |
| void | setSwingVStep (void) | 
| Set the Vertical Swing Step setting of the A/C.  More... | |
| bool | getSwingVStep (void) const | 
| Get the Vertical Swing Step setting of the A/C.  More... | |
| void | setSleep (void) | 
| Toggle the Sleep mode of the A/C.  More... | |
| bool | getSleep (void) const | 
| Get the Sleep setting of the A/C.  More... | |
| void | setTurbo (void) | 
| Toggle the Turbo mode of the A/C.  More... | |
| bool | getTurbo (void) const | 
| Get the Turbo setting of the A/C.  More... | |
| void | setLed (void) | 
| Toggle the Led (light) mode of the A/C.  More... | |
| bool | getLed (void) const | 
| Get the Led (light) setting of the A/C.  More... | |
| void | setClean (void) | 
| Toggle the Clean mode of the A/C.  More... | |
| bool | getClean (void) const | 
| Get the Clean setting of the A/C.  More... | |
| bool | getZoneFollow (void) const | 
| Get the Zone Follow setting of the A/C.  More... | |
| uint32_t | getRaw (void) const | 
| Get a copy of the internal state as a valid code for this protocol.  More... | |
| void | setRaw (const uint32_t new_code) | 
| Set the internal state from a valid code for this protocol.  More... | |
| stdAc::state_t | toCommon (const stdAc::state_t *prev=NULL) const | 
| Convert the A/C state to it's common stdAc::state_t equivalent.  More... | |
| String | toString (void) const | 
| Convert the internal state into a human readable string.  More... | |
| void | setZoneFollow (const bool on) | 
| Change the Zone Follow setting.  More... | |
| Static Public Member Functions | |
| static uint8_t | convertMode (const stdAc::opmode_t mode) | 
| Convert a standard A/C mode 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 to it's common stdAc::opmode_t 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 | setTempRaw (const uint8_t code) | 
| Set the raw (native) temperature value.  More... | |
| uint8_t | getTempRaw (void) const | 
| Get the raw (native) temperature value.  More... | |
| void | setSensorTempRaw (const uint8_t code) | 
| Set the raw (native) sensor temperature value.  More... | |
| bool | isSpecialState (void) const | 
| Is the current state is a special state?  More... | |
| bool | handleSpecialState (const uint32_t data) | 
| Adjust any internal settings based on the type of special state we are supplied. Does nothing if it isn't a special state.  More... | |
| void | updateAndSaveState (const uint32_t raw_state) | 
| Backup the current internal state as long as it isn't a special state and set the new state.  More... | |
| void | recoverSavedState (void) | 
| Restore the current internal state from backup as long as it isn't a special state.  More... | |
| uint32_t | getNormalState (void) | 
| Private Attributes | |
| IRsend | _irsend | 
| Instance of the IR send class.  More... | |
| CoolixProtocol | _ | 
| The state of the IR remote in IR code form.  More... | |
| CoolixProtocol | _saved | 
| Copy of the state if we required a special mode.  More... | |
| bool | powerFlag | 
| bool | turboFlag | 
| bool | ledFlag | 
| bool | cleanFlag | 
| bool | sleepFlag | 
| bool | swingFlag | 
| uint8_t | savedFan | 
Class for handling detailed Coolix 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 IRCoolixAC::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 IRCoolixAC::clearSensorTemp | ( | void | ) | 
Clear the Sensor Temperature setting..
| 
 | static | 
Convert a stdAc::fanspeed_t enum into it's native speed.
| [in] | speed | The enum to be converted. | 
| 
 | static | 
Convert a standard A/C mode into its native mode.
| [in] | mode | A stdAc::opmode_t to be converted to it's native equivalent. | 
| bool IRCoolixAC::getClean | ( | void | ) | const | 
Get the Clean setting of the A/C.
| uint8_t IRCoolixAC::getFan | ( | void | ) | const | 
Get the current fan speed setting.
| bool IRCoolixAC::getLed | ( | void | ) | const | 
Get the Led (light) setting of the A/C.
| uint8_t IRCoolixAC::getMode | ( | void | ) | const | 
Get the operating mode setting of the A/C.
| 
 | private | 
| bool IRCoolixAC::getPower | ( | void | ) | const | 
Get the value of the current power setting.
| uint32_t IRCoolixAC::getRaw | ( | void | ) | const | 
Get a copy of the internal state as a valid code for this protocol.
| uint8_t IRCoolixAC::getSensorTemp | ( | void | ) | const | 
Get the sensor temperature setting.
| bool IRCoolixAC::getSleep | ( | void | ) | const | 
Get the Sleep setting of the A/C.
| bool IRCoolixAC::getSwing | ( | void | ) | const | 
Get the Swing setting of the A/C.
| bool IRCoolixAC::getSwingVStep | ( | void | ) | const | 
Get the Vertical Swing Step setting of the A/C.
| uint8_t IRCoolixAC::getTemp | ( | void | ) | const | 
Get the current temperature setting.
| 
 | private | 
Get the raw (native) temperature value.
| bool IRCoolixAC::getTurbo | ( | void | ) | const | 
Get the Turbo setting of the A/C.
| bool IRCoolixAC::getZoneFollow | ( | void | ) | const | 
Get the Zone Follow setting of the A/C.
| 
 | private | 
Adjust any internal settings based on the type of special state we are supplied. Does nothing if it isn't a special state.
| [in] | data | The state we need to act upon. | 
| 
 | private | 
Is the current state is a special state?
| void IRCoolixAC::off | ( | void | ) | 
Change the power setting to Off.
| void IRCoolixAC::on | ( | void | ) | 
Change the power setting to On.
| 
 | private | 
Restore the current internal state from backup as long as it isn't a special state.
| void IRCoolixAC::send | ( | const uint16_t | repeat = kCoolixDefaultRepeat | ) | 
Send the current internal state as an IR message.
| [in] | repeat | Nr. of times the message will be repeated. | 
| void IRCoolixAC::setClean | ( | void | ) | 
Toggle the Clean mode of the A/C.
| void IRCoolixAC::setFan | ( | const uint8_t | speed, | 
| const bool | modecheck = true | ||
| ) | 
Set the speed of the fan.
| [in] | speed | The desired setting. | 
| [in] | modecheck | Do we enforce any mode limitations before setting? | 
| void IRCoolixAC::setLed | ( | void | ) | 
Toggle the Led (light) mode of the A/C.
| void IRCoolixAC::setMode | ( | const uint8_t | mode | ) | 
Set the operating mode of the A/C.
| [in] | mode | The desired operating mode. | 
| void IRCoolixAC::setPower | ( | const bool | on | ) | 
Change the power setting.
| [in] | on | true, the setting is on. false, the setting is off. | 
| void IRCoolixAC::setRaw | ( | const uint32_t | new_code | ) | 
Set the internal state from a valid code for this protocol.
| [in] | new_code | A valid code for this protocol. | 
| void IRCoolixAC::setSensorTemp | ( | const uint8_t | temp | ) | 
Set the sensor temperature.
| [in] | temp | The temperature in degrees celsius. | 
| 
 | private | 
Set the raw (native) sensor temperature value.
| [in] | code | The desired native sensor temperature. | 
| void IRCoolixAC::setSleep | ( | void | ) | 
Toggle the Sleep mode of the A/C.
| void IRCoolixAC::setSwing | ( | void | ) | 
Toggle the Swing mode of the A/C.
| void IRCoolixAC::setSwingVStep | ( | void | ) | 
Set the Vertical Swing Step setting of the A/C.
| void IRCoolixAC::setTemp | ( | const uint8_t | desired | ) | 
Set the temperature.
| [in] | desired | The temperature in degrees celsius. | 
| 
 | private | 
Set the raw (native) temperature value.
| [in] | code | The desired native temperature. | 
| void IRCoolixAC::setTurbo | ( | void | ) | 
Toggle the Turbo mode of the A/C.
| void IRCoolixAC::setZoneFollow | ( | const bool | on | ) | 
Change the Zone Follow setting.
| [in] | on | true, the setting is on. false, the setting is off. | 
| void IRCoolixAC::stateReset | ( | void | ) | 
Reset the internal state to a fixed known good state.
| stdAc::state_t IRCoolixAC::toCommon | ( | const stdAc::state_t * | prev = NULL | ) | const | 
Convert the A/C state to it's common stdAc::state_t equivalent.
| [in] | prev | Ptr to the previous state if required. | 
| 
 | static | 
| 
 | static | 
Convert a native mode to it's common stdAc::opmode_t equivalent.
| [in] | mode | A native operation mode to be converted. | 
| String IRCoolixAC::toString | ( | void | ) | const | 
Convert the internal state into a human readable string.
| 
 | private | 
Backup the current internal state as long as it isn't a special state and set the new state.
| [in] | raw_state | A valid raw state/code for this protocol. | 
| 
 | private | 
The state of the IR remote in IR code form.
| 
 | private | 
Instance of the IR send class.
| 
 | private | 
Copy of the state if we required a special mode.
| 
 | private | 
| 
 | private | 
| 
 | private | 
| 
 | private | 
| 
 | private | 
| 
 | private | 
| 
 | private | 
 1.8.17
 1.8.17