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

| Public Member Functions | |
| IRTrotec3550 (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 degrees, const bool celsius=true) | 
| Set the temperature.  More... | |
| uint8_t | getTemp (void) const | 
| Get the current temperature setting.  More... | |
| void | setTempUnit (const bool celsius) | 
| Set the temperature unit that the A/C will use..  More... | |
| bool | getTempUnit (void) const | 
| Get the current temperature unit setting.  More... | |
| void | setFan (const uint8_t fan) | 
| 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 | getSwingV (void) const | 
| Get the value of the current Vertical Swing setting.  More... | |
| void | setSwingV (const bool on) | 
| Change the Vertical Swing setting.  More... | |
| uint16_t | getTimer (void) const | 
| Get the number of minutes of the Timer setting.  More... | |
| void | setTimer (const uint16_t mins) | 
| Set the number of minutes of the Timer setting.  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... | |
| Trotec3550Protocol | _ | 
Class for handling detailed Trotec 3550 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 IRTrotec3550::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. | 
| uint8_t IRTrotec3550::getFan | ( | void | ) | const | 
Get the current fan speed setting.
| uint8_t IRTrotec3550::getMode | ( | void | ) | const | 
Get the operating mode setting of the A/C.
| bool IRTrotec3550::getPower | ( | void | ) | const | 
Get the value of the current power setting.
| uint8_t * IRTrotec3550::getRaw | ( | void | ) | 
Get a PTR to the internal state/code for this protocol.
| bool IRTrotec3550::getSwingV | ( | void | ) | const | 
Get the value of the current Vertical Swing setting.
| uint8_t IRTrotec3550::getTemp | ( | void | ) | const | 
Get the current temperature setting.
| bool IRTrotec3550::getTempUnit | ( | void | ) | const | 
Get the current temperature unit setting.
| uint16_t IRTrotec3550::getTimer | ( | void | ) | const | 
Get the number of minutes of the Timer setting.
| void IRTrotec3550::off | ( | void | ) | 
Set the requested power state of the A/C to off.
| void IRTrotec3550::on | ( | void | ) | 
Set the requested power state of the A/C to on.
| void IRTrotec3550::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. | 
| void IRTrotec3550::setFan | ( | const uint8_t | fan | ) | 
Set the speed of the fan.
| [in] | fan | The desired setting. | 
| void IRTrotec3550::setMode | ( | const uint8_t | mode | ) | 
Set the operating mode of the A/C.
| [in] | mode | The desired operating mode. | 
| void IRTrotec3550::setPower | ( | const bool | on | ) | 
Change the power setting.
| [in] | on | true, the setting is on. false, the setting is off. | 
| void IRTrotec3550::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 IRTrotec3550::setSwingV | ( | const bool | on | ) | 
Change the Vertical Swing setting.
| [in] | on | true, the setting is on. false, the setting is off. | 
| void IRTrotec3550::setTemp | ( | const uint8_t | degrees, | 
| const bool | celsius = true | ||
| ) | 
Set the temperature.
| [in] | degrees | The temperature in degrees. | 
| [in] | celsius | Use celsius units. True, Celsius; False Fahrenheit. | 
| void IRTrotec3550::setTempUnit | ( | const bool | celsius | ) | 
Set the temperature unit that the A/C will use..
| [in] | celsius | Use celsius units. True, Celsius; False Fahrenheit. | 
| void IRTrotec3550::setTimer | ( | const uint16_t | mins | ) | 
Set the number of minutes of the Timer setting.
| [in] | mins | Nr. of Minutes for the Timer. 0means disable the timer. | 
| void IRTrotec3550::stateReset | ( | void | ) | 
Reset the state of the remote to a known good state/sequence.
| stdAc::state_t IRTrotec3550::toCommon | ( | void | ) | const | 
Convert the current internal state into its stdAc::state_t equivalent.
| 
 | static | 
| 
 | static | 
| String IRTrotec3550::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