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

| Public Member Functions | |
| IRElectraAc (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=kElectraAcMinRepeat) | 
| 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 | 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 | 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... | |
| 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 | setSwingH (const bool on) | 
| Set the Horizontal Swing mode of the A/C.  More... | |
| bool | getSwingH (void) const | 
| Get the Horizontal Swing mode of the A/C.  More... | |
| void | setClean (const bool on) | 
| Set the Clean mode of the A/C.  More... | |
| bool | getClean (void) const | 
| Get the Clean mode of the A/C.  More... | |
| void | setLightToggle (const bool on) | 
| Set the Light (LED) Toggle mode of the A/C.  More... | |
| bool | getLightToggle (void) const | 
| Get the Light (LED) Toggle mode of the A/C.  More... | |
| void | setTurbo (const bool on) | 
| Set the Turbo mode of the A/C.  More... | |
| bool | getTurbo (void) const | 
| Get the Turbo mode of the A/C.  More... | |
| void | setIFeel (const bool on) | 
| Set the IFeel mode of the A/C.  More... | |
| bool | getIFeel (void) const | 
| Get the IFeel mode of the A/C.  More... | |
| void | setSensorUpdate (const bool on) | 
| Set the silent Sensor Update setting of the message. i.e. Is this just a sensor temp update message from the remote?  More... | |
| bool | getSensorUpdate (void) const | 
| Get the silent Sensor Update setting of the message. i.e. Is this just a sensor temp update message from the remote?  More... | |
| void | setSensorTemp (const uint8_t temp) | 
| Set the Sensor temperature for the IFeel mode.  More... | |
| uint8_t | getSensorTemp (void) const | 
| Get the current sensor temperature setting for the IFeel mode.  More... | |
| uint8_t * | getRaw (void) | 
| Get a PTR to the internal state/code for this protocol.  More... | |
| void | setRaw (const uint8_t new_code[], const uint16_t length=kElectraAcStateLength) | 
| Set the internal state from a valid code for this protocol.  More... | |
| String | toString (void) const | 
| Convert the current internal state into a human readable string.  More... | |
| stdAc::state_t | toCommon (void) const | 
| Convert the current internal state into its stdAc::state_t equivalent.  More... | |
| Static Public Member Functions | |
| static bool | validChecksum (const uint8_t state[], const uint16_t length=kElectraAcStateLength) | 
| Verify the checksum is valid for a given state.  More... | |
| static uint8_t | calcChecksum (const uint8_t state[], const uint16_t length=kElectraAcStateLength) | 
| Calculate the checksum 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 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... | |
| Private Member Functions | |
| void | checksum (const uint16_t length=kElectraAcStateLength) | 
| Calculate and set the checksum values for the internal state.  More... | |
| Private Attributes | |
| IRsend | _irsend | 
| instance of the IR send class  More... | |
| ElectraProtocol | _ | 
Class for handling detailed Electra 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 IRElectraAc::begin | ( | void | ) | 
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. | 
| [in] | length | The length of the state array. | 
| 
 | inline | 
Run the calibration to calculate uSec timing offsets for this platform.
| 
 | private | 
Calculate and set the checksum values for the internal state.
| [in] | length | The length of the state array. | 
| 
 | 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. | 
| bool IRElectraAc::getClean | ( | void | ) | const | 
Get the Clean mode of the A/C.
| uint8_t IRElectraAc::getFan | ( | void | ) | const | 
Get the current fan speed setting.
| bool IRElectraAc::getIFeel | ( | void | ) | const | 
Get the IFeel mode of the A/C.
| bool IRElectraAc::getLightToggle | ( | void | ) | const | 
Get the Light (LED) Toggle mode of the A/C.
| uint8_t IRElectraAc::getMode | ( | void | ) | const | 
Get the operating mode setting of the A/C.
| bool IRElectraAc::getPower | ( | void | ) | const | 
Get the value of the current power setting.
| uint8_t * IRElectraAc::getRaw | ( | void | ) | 
Get a PTR to the internal state/code for this protocol.
| uint8_t IRElectraAc::getSensorTemp | ( | void | ) | const | 
Get the current sensor temperature setting for the IFeel mode.
| bool IRElectraAc::getSensorUpdate | ( | void | ) | const | 
Get the silent Sensor Update setting of the message. i.e. Is this just a sensor temp update message from the remote?
| bool IRElectraAc::getSwingH | ( | void | ) | const | 
Get the Horizontal Swing mode of the A/C.
| bool IRElectraAc::getSwingV | ( | void | ) | const | 
Get the Vertical Swing mode of the A/C.
| uint8_t IRElectraAc::getTemp | ( | void | ) | const | 
Get the current temperature setting.
| bool IRElectraAc::getTurbo | ( | void | ) | const | 
Get the Turbo mode of the A/C.
| void IRElectraAc::off | ( | void | ) | 
Change the power setting to Off.
| void IRElectraAc::on | ( | void | ) | 
Change the power setting to On.
| void IRElectraAc::send | ( | const uint16_t | repeat = kElectraAcMinRepeat | ) | 
Send the current internal state as an IR message.
| [in] | repeat | Nr. of times the message will be repeated. | 
| void IRElectraAc::setClean | ( | const bool | on | ) | 
Set the Clean mode of the A/C.
| [in] | on | true, the setting is on. false, the setting is off. | 
| void IRElectraAc::setFan | ( | const uint8_t | speed | ) | 
Set the speed of the fan.
| [in] | speed | The desired setting. | 
| void IRElectraAc::setIFeel | ( | const bool | on | ) | 
Set the IFeel mode of the A/C.
| [in] | on | true, the setting is on. false, the setting is off. | 
| void IRElectraAc::setLightToggle | ( | const bool | on | ) | 
Set the Light (LED) Toggle mode of the A/C.
| [in] | on | true, the setting is on. false, the setting is off. | 
| void IRElectraAc::setMode | ( | const uint8_t | mode | ) | 
Set the operating mode of the A/C.
| [in] | mode | The desired operating mode. | 
| void IRElectraAc::setPower | ( | const bool | on | ) | 
Change the power setting.
| [in] | on | true, the setting is on. false, the setting is off. | 
| void IRElectraAc::setRaw | ( | const uint8_t | new_code[], | 
| const uint16_t | length = kElectraAcStateLength | ||
| ) | 
Set the internal state from a valid code for this protocol.
| [in] | new_code | A valid code for this protocol. | 
| [in] | length | The length of the code array. | 
| void IRElectraAc::setSensorTemp | ( | const uint8_t | temp | ) | 
Set the Sensor temperature for the IFeel mode.
| [in] | temp | The temperature in degrees celsius. | 
| void IRElectraAc::setSensorUpdate | ( | const bool | on | ) | 
Set the silent Sensor Update setting of the message. i.e. Is this just a sensor temp update message from the remote?
| [in] | on | true, the setting is on. false, the setting is off. | 
| void IRElectraAc::setSwingH | ( | const bool | on | ) | 
Set the Horizontal Swing mode of the A/C.
| [in] | on | true, the setting is on. false, the setting is off. | 
| void IRElectraAc::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 IRElectraAc::setTemp | ( | const uint8_t | temp | ) | 
Set the temperature.
| [in] | temp | The temperature in degrees celsius. | 
| void IRElectraAc::setTurbo | ( | const bool | on | ) | 
Set the Turbo mode of the A/C.
| [in] | on | true, the setting is on. false, the setting is off. | 
| void IRElectraAc::stateReset | ( | void | ) | 
Reset the internal state to a fixed known good state.
| stdAc::state_t IRElectraAc::toCommon | ( | void | ) | const | 
Convert the current internal state into its stdAc::state_t equivalent.
| 
 | static | 
| 
 | static | 
| String IRElectraAc::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 state to verify the checksum of. | 
| [in] | length | The length of the state array. | 
| 
 | private | 
| 
 | private | 
instance of the IR send class
 1.8.17
 1.8.17