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

| Public Member Functions | |
| IRTrotecESP (const uint16_t pin, const bool inverted=false, const bool use_modulation=true) | |
| Class constructor.  More... | |
| void | send (const uint16_t repeat=kTrotecDefaultRepeat) | 
| 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 state of the remote to a known good state/sequence.  More... | |
| void | on (void) | 
| Set the requested power state of the A/C to on.  More... | |
| void | off (void) | 
| Set the requested power state of the A/C to off.  More... | |
| void | setPower (const bool state) | 
| Change the power setting.  More... | |
| bool | getPower (void) const | 
| Get the value of the current power setting.  More... | |
| void | setTemp (const uint8_t celsius) | 
| Set the temperature.  More... | |
| uint8_t | getTemp (void) const | 
| Get the current temperature setting.  More... | |
| void | setSpeed (const uint8_t fan) | 
| Set the speed of the fan.  More... | |
| uint8_t | getSpeed (void) const | 
| Get the current fan speed setting.  More... | |
| void | setFan (const uint8_t fan) | 
| uint8_t | getFan (void) const | 
| 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... | |
| uint8_t | getTimer (void) const | 
| Get the timer time in nr. of Hours.  More... | |
| void | setTimer (const uint8_t timer) | 
| Set the timer time in nr. of Hours.  More... | |
| uint8_t * | getRaw (void) | 
| Get a PTR to the internal state/code for this protocol.  More... | |
| void | setRaw (const uint8_t state[]) | 
| 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=kTrotecStateLength) | 
| Verify the checksum is valid for a given state.  More... | |
| static uint8_t | calcChecksum (const uint8_t state[], const uint16_t length=kTrotecStateLength) | 
| 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 (void) | 
| Calculate & set the checksum for the current internal state of the remote.  More... | |
| Private Attributes | |
| IRsend | _irsend | 
| Instance of the IR send class.  More... | |
| TrotecProtocol | _ | 
Class for handling detailed Trotec 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 IRTrotecESP::begin | ( | void | ) | 
Set up hardware to be able to send a message.
| 
 | static | 
Calculate the checksum for a given state.
| [in] | state | The array to calc the checksum of. | 
| [in] | length | The length/size of the array. | 
| 
 | inline | 
Run the calibration to calculate uSec timing offsets for this platform.
| 
 | private | 
Calculate & set the checksum for the current internal state of the remote.
| 
 | 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. | 
| 
 | inline | 
| uint8_t IRTrotecESP::getMode | ( | void | ) | const | 
Get the operating mode setting of the A/C.
| bool IRTrotecESP::getPower | ( | void | ) | const | 
Get the value of the current power setting.
| uint8_t * IRTrotecESP::getRaw | ( | void | ) | 
Get a PTR to the internal state/code for this protocol.
| bool IRTrotecESP::getSleep | ( | void | ) | const | 
Get the Sleep setting of the A/C.
| uint8_t IRTrotecESP::getSpeed | ( | void | ) | const | 
Get the current fan speed setting.
| uint8_t IRTrotecESP::getTemp | ( | void | ) | const | 
Get the current temperature setting.
| uint8_t IRTrotecESP::getTimer | ( | void | ) | const | 
Get the timer time in nr. of Hours.
| void IRTrotecESP::off | ( | void | ) | 
Set the requested power state of the A/C to off.
| void IRTrotecESP::on | ( | void | ) | 
Set the requested power state of the A/C to on.
| void IRTrotecESP::send | ( | const uint16_t | repeat = kTrotecDefaultRepeat | ) | 
Send the current internal state as an IR message.
| [in] | repeat | Nr. of times the message will be repeated. | 
| 
 | inline | 
| void IRTrotecESP::setMode | ( | const uint8_t | mode | ) | 
Set the operating mode of the A/C.
| [in] | mode | The desired operating mode. | 
| void IRTrotecESP::setPower | ( | const bool | on | ) | 
Change the power setting.
| [in] | on | true, the setting is on. false, the setting is off. | 
| void IRTrotecESP::setRaw | ( | const uint8_t | state[] | ) | 
Set the internal state from a valid code for this protocol.
| [in] | state | A valid code for this protocol. | 
| void IRTrotecESP::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 IRTrotecESP::setSpeed | ( | const uint8_t | fan | ) | 
Set the speed of the fan.
| [in] | fan | The desired setting. | 
| void IRTrotecESP::setTemp | ( | const uint8_t | celsius | ) | 
Set the temperature.
| [in] | celsius | The temperature in degrees celsius. | 
| void IRTrotecESP::setTimer | ( | const uint8_t | timer | ) | 
Set the timer time in nr. of Hours.
| [in] | timer | Nr. of Hours. Max is kTrotecMaxTimer | 
| void IRTrotecESP::stateReset | ( | void | ) | 
Reset the state of the remote to a known good state/sequence.
| stdAc::state_t IRTrotecESP::toCommon | ( | void | ) | const | 
Convert the current internal state into its stdAc::state_t equivalent.
| 
 | static | 
| 
 | static | 
| String IRTrotecESP::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/size of the array. | 
| 
 | private | 
| 
 | private | 
Instance of the IR send class.
 1.8.17
 1.8.17