| IRremoteESP8266
    | 
Class for handling detailed Carrier 64 bit A/C messages. More...
#include <ir_Carrier.h>

| Public Member Functions | |
| IRCarrierAc64 (const uint16_t pin, const bool inverted=false, const bool use_modulation=true) | |
| Class constructor.  More... | |
| void | stateReset () | 
| Reset the internal state to a fixed known good state.  More... | |
| void | send (const uint16_t repeat=kCarrierAc64MinRepeat) | 
| 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 () | 
| Set up hardware to be able to send a message.  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 | on (void) | 
| Change the power setting to On.  More... | |
| void | off (void) | 
| Change the power setting to Off.  More... | |
| void | setTemp (const uint8_t temp) | 
| Set the temp in deg C.  More... | |
| uint8_t | getTemp (void) const | 
| Get the current temperature from the internal state.  More... | |
| void | setSwingV (const bool on) | 
| Set the Vertical Swing mode of the A/C.  More... | |
| bool | getSwingV (void) const | 
| Get the Vertical Swing mode of the A/C.  More... | |
| void | setSleep (const bool on) | 
| Set the Sleep mode of the A/C.  More... | |
| bool | getSleep (void) const | 
| Get the Sleep mode of the A/C.  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... | |
| 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 | setOnTimer (const uint16_t nr_of_mins) | 
| Set the On Timer time.  More... | |
| uint16_t | getOnTimer (void) const | 
| Get the current On Timer time.  More... | |
| void | setOffTimer (const uint16_t nr_of_mins) | 
| Set the Off Timer time.  More... | |
| uint16_t | getOffTimer (void) const | 
| Get the current Off Timer time.  More... | |
| uint64_t | getRaw (void) | 
| Get a copy of the internal state as a valid code for this protocol.  More... | |
| void | setRaw (const uint64_t state) | 
| Set the internal state from a valid code for this protocol.  More... | |
| stdAc::state_t | toCommon (void) 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... | |
| Static Public Member Functions | |
| static uint8_t | calcChecksum (const uint64_t state) | 
| Calculate the checksum for a given state.  More... | |
| static bool | validChecksum (const uint64_t state) | 
| Verify the checksum is valid for a given state.  More... | |
| 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 | checksum (void) | 
| Calculate and set the checksum values for the internal state.  More... | |
| void | _cancelOnTimer (void) | 
| Clear the On Timer enable bit.  More... | |
| void | _cancelOffTimer (void) | 
| Clear the Off Timer enable bit.  More... | |
| Private Attributes | |
| IRsend | _irsend | 
| Instance of the IR send class.  More... | |
| CarrierProtocol | _ | 
Class for handling detailed Carrier 64 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? | 
| 
 | private | 
Clear the Off Timer enable bit.
| 
 | private | 
Clear the On Timer enable bit.
| void IRCarrierAc64::begin | ( | ) | 
Set up hardware to be able to send a message.
| 
 | static | 
Calculate the checksum for a given state.
| [in] | state | The value to calc the checksum of. | 
| 
 | 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 standard A/C mode into its native mode.
| [in] | mode | A stdAc::opmode_t to be converted to it's native equivalent. | 
| uint8_t IRCarrierAc64::getFan | ( | void | ) | const | 
Get the current fan speed setting.
| uint8_t IRCarrierAc64::getMode | ( | void | ) | const | 
Get the operating mode setting of the A/C.
| uint16_t IRCarrierAc64::getOffTimer | ( | void | ) | const | 
Get the current Off Timer time.
| uint16_t IRCarrierAc64::getOnTimer | ( | void | ) | const | 
Get the current On Timer time.
| bool IRCarrierAc64::getPower | ( | void | ) | const | 
Get the value of the current power setting.
| uint64_t IRCarrierAc64::getRaw | ( | void | ) | 
Get a copy of the internal state as a valid code for this protocol.
| bool IRCarrierAc64::getSleep | ( | void | ) | const | 
Get the Sleep mode of the A/C.
| bool IRCarrierAc64::getSwingV | ( | void | ) | const | 
Get the Vertical Swing mode of the A/C.
| uint8_t IRCarrierAc64::getTemp | ( | void | ) | const | 
Get the current temperature from the internal state.
| void IRCarrierAc64::off | ( | void | ) | 
Change the power setting to Off.
| void IRCarrierAc64::on | ( | void | ) | 
Change the power setting to On.
| void IRCarrierAc64::send | ( | const uint16_t | repeat = kCarrierAc64MinRepeat | ) | 
Send the current internal state as an IR message.
| [in] | repeat | Nr. of times the message will be repeated. | 
| void IRCarrierAc64::setFan | ( | const uint8_t | speed | ) | 
Set the speed of the fan.
| [in] | speed | The desired setting. | 
| void IRCarrierAc64::setMode | ( | const uint8_t | mode | ) | 
Set the operating mode of the A/C.
| [in] | mode | The desired operating mode. | 
| void IRCarrierAc64::setOffTimer | ( | const uint16_t | nr_of_mins | ) | 
Set the Off Timer time.
| [in] | nr_of_mins | Number of minutes to set the timer to. (< 60 is disable). | 
| void IRCarrierAc64::setOnTimer | ( | const uint16_t | nr_of_mins | ) | 
Set the On Timer time.
| [in] | nr_of_mins | Number of minutes to set the timer to. (< 60 is disable). | 
| void IRCarrierAc64::setPower | ( | const bool | on | ) | 
Change the power setting.
| [in] | on | true, the setting is on. false, the setting is off. | 
| void IRCarrierAc64::setRaw | ( | const uint64_t | state | ) | 
Set the internal state from a valid code for this protocol.
| [in] | state | A valid code for this protocol. | 
| void IRCarrierAc64::setSleep | ( | const bool | on | ) | 
Set the Sleep mode of the A/C.
| [in] | on | true, the setting is on. false, the setting is off. | 
| void IRCarrierAc64::setSwingV | ( | 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 IRCarrierAc64::setTemp | ( | const uint8_t | temp | ) | 
Set the temp in deg C.
| [in] | temp | The desired temperature in Celsius. | 
| void IRCarrierAc64::stateReset | ( | ) | 
Reset the internal state to a fixed known good state.
| stdAc::state_t IRCarrierAc64::toCommon | ( | void | ) | const | 
Convert the A/C state to it's common stdAc::state_t equivalent.
| 
 | static | 
| 
 | static | 
Convert a native mode to it's common stdAc::opmode_t equivalent.
| [in] | mode | A native operation mode to be converted. | 
| String IRCarrierAc64::toString | ( | void | ) | const | 
Convert the 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. | 
| 
 | private | 
| 
 | private | 
Instance of the IR send class.
 1.8.17
 1.8.17