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

| Public Member Functions | |
| IRToshibaAC (const uint16_t pin, const bool inverted=false, const bool use_modulation=true) | |
| Class constructor.  More... | |
| void | stateReset (void) | 
| Reset the state of the remote to a known good state/sequence.  More... | |
| void | send (const uint16_t repeat=kToshibaACMinRepeat) | 
| Send the current internal state as IR messages.  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) | 
| 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 on) | 
| Change the power setting.  More... | |
| bool | getPower (void) const | 
| Get the value of the current power setting.  More... | |
| void | setTemp (const uint8_t degrees) | 
| 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 | setTurbo (const bool on) | 
| Set the Turbo (Powerful) setting of the A/C.  More... | |
| bool | getTurbo (void) const | 
| Get the Turbo (Powerful) setting of the A/C.  More... | |
| void | setEcono (const bool on) | 
| Set the Economy mode setting of the A/C.  More... | |
| bool | getEcono (void) const | 
| Get the Economy mode setting of the A/C.  More... | |
| void | setFilter (const bool on) | 
| Set the filter (Pure/Ion Filter) setting of the A/C.  More... | |
| bool | getFilter (void) const | 
| Get the filter (Pure/Ion Filter) setting of the A/C.  More... | |
| void | setMode (const uint8_t mode) | 
| Set the operating mode of the A/C.  More... | |
| uint8_t | getMode (const bool raw=false) const | 
| Get the operating mode setting of the A/C.  More... | |
| void | setRaw (const uint8_t newState[], const uint16_t length=kToshibaACStateLength) | 
| Set the internal state from a valid code for this protocol.  More... | |
| uint8_t * | getRaw (void) | 
| Get a PTR to the internal state/code for this protocol with all integrity checks passing.  More... | |
| uint16_t | getStateLength (void) const | 
| Get the length of the current internal state per the protocol structure.  More... | |
| uint8_t | getSwing (const bool raw=true) const | 
| Get the swing setting of the A/C.  More... | |
| void | setSwing (const uint8_t setting) | 
| Set the swing setting of the A/C.  More... | |
| stdAc::state_t | toCommon (const stdAc::state_t *prev=NULL) 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 uint16_t | getInternalStateLength (const uint8_t state[], const uint16_t size) | 
| Get the length of the supplied Toshiba state per it's protocol structure.  More... | |
| static bool | validChecksum (const uint8_t state[], const uint16_t length=kToshibaACStateLength) | 
| Verify the checksum is valid 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=kToshibaACStateLength) | 
| Calculate & set the checksum for the current internal state of the remote.  More... | |
| void | setStateLength (const uint16_t size) | 
| Set the internal length of the current internal state per the protocol.  More... | |
| void | _backupState (void) | 
| Make a copy of the internal code-form A/C state.  More... | |
| void | _restoreState (void) | 
| Recover the internal code-form A/C state from the backup.  More... | |
| Static Private Member Functions | |
| static uint8_t | calcChecksum (const uint8_t state[], const uint16_t length=kToshibaACStateLength) | 
| Calculate the checksum for a given state.  More... | |
| Private Attributes | |
| IRsend | _irsend | 
| Instance of the IR send class.  More... | |
| ToshibaProtocol | _ | 
| uint8_t | backup [kToshibaACStateLengthLong] | 
| A backup copy of the state.  More... | |
| uint8_t | _prev_mode | 
| Store of the previously set mode.  More... | |
| bool | _send_swing | 
| Flag indicating if we need to send a swing message.  More... | |
| uint8_t | _swing_mode | 
| The saved swing state/mode/command.  More... | |
Class for handling detailed Toshiba 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 | 
Make a copy of the internal code-form A/C state.
| 
 | private | 
Recover the internal code-form A/C state from the backup.
| void IRToshibaAC::begin | ( | void | ) | 
Set up hardware to be able to send a message.
| 
 | staticprivate | 
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.
| [in] | length | The length/size of the internal array to checksum. | 
| 
 | 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 IRToshibaAC::getEcono | ( | void | ) | const | 
Get the Economy mode setting of the A/C.
| uint8_t IRToshibaAC::getFan | ( | void | ) | const | 
Get the current fan speed setting.
| bool IRToshibaAC::getFilter | ( | void | ) | const | 
Get the filter (Pure/Ion Filter) setting of the A/C.
| 
 | static | 
Get the length of the supplied Toshiba state per it's protocol structure.
| [in] | state | The array to get the built-in length from. | 
| [in] | size | The physical size of the state array. | 
| uint8_t IRToshibaAC::getMode | ( | const bool | raw = false | ) | const | 
Get the operating mode setting of the A/C.
| [in] | raw | Get the value without any intelligent processing. | 
| bool IRToshibaAC::getPower | ( | void | ) | const | 
Get the value of the current power setting.
| uint8_t * IRToshibaAC::getRaw | ( | void | ) | 
Get a PTR to the internal state/code for this protocol with all integrity checks passing.
| uint16_t IRToshibaAC::getStateLength | ( | void | ) | const | 
Get the length of the current internal state per the protocol structure.
| uint8_t IRToshibaAC::getSwing | ( | const bool | raw = true | ) | const | 
Get the swing setting of the A/C.
| [in] | raw | Calculate the answer from just the state data. | 
| uint8_t IRToshibaAC::getTemp | ( | void | ) | const | 
Get the current temperature setting.
| bool IRToshibaAC::getTurbo | ( | void | ) | const | 
Get the Turbo (Powerful) setting of the A/C.
| void IRToshibaAC::off | ( | void | ) | 
Set the requested power state of the A/C to off.
| void IRToshibaAC::on | ( | void | ) | 
Set the requested power state of the A/C to on.
| void IRToshibaAC::send | ( | const uint16_t | repeat = kToshibaACMinRepeat | ) | 
Send the current internal state as IR messages.
| [in] | repeat | Nr. of times the message will be repeated. | 
| void IRToshibaAC::setEcono | ( | const bool | on | ) | 
Set the Economy mode setting of the A/C.
| [in] | on | true, the setting is on. false, the setting is off. Note: Economy mode is mutually exclusive with Turbo mode. | 
| void IRToshibaAC::setFan | ( | const uint8_t | speed | ) | 
Set the speed of the fan.
| [in] | speed | The desired setting (0 is Auto, 1-5 is the speed, 5 is Max) | 
| void IRToshibaAC::setFilter | ( | const bool | on | ) | 
Set the filter (Pure/Ion Filter) setting of the A/C.
| [in] | on | true, the setting is on. false, the setting is off. | 
| void IRToshibaAC::setMode | ( | const uint8_t | mode | ) | 
Set the operating mode of the A/C.
| [in] | mode | The desired operating mode. | 
| void IRToshibaAC::setPower | ( | const bool | on | ) | 
Change the power setting.
| [in] | on | true, the setting is on. false, the setting is off. | 
| void IRToshibaAC::setRaw | ( | const uint8_t | newState[], | 
| const uint16_t | length = kToshibaACStateLength | ||
| ) | 
Set the internal state from a valid code for this protocol.
| [in] | newState | A valid code for this protocol. | 
| [in] | length | The length/size of the array. | 
| 
 | private | 
Set the internal length of the current internal state per the protocol.
| [in] | size | Nr. of bytes in use for the current internal state message. | 
| void IRToshibaAC::setSwing | ( | const uint8_t | setting | ) | 
Set the swing setting of the A/C.
| [in] | setting | The value of the desired setting. | 
| void IRToshibaAC::setTemp | ( | const uint8_t | degrees | ) | 
Set the temperature.
| [in] | degrees | The temperature in degrees celsius. | 
| void IRToshibaAC::setTurbo | ( | const bool | on | ) | 
Set the Turbo (Powerful) setting of the A/C.
| [in] | on | true, the setting is on. false, the setting is off. Note: Turbo mode is mutually exclusive with Economy mode. | 
| void IRToshibaAC::stateReset | ( | void | ) | 
Reset the state of the remote to a known good state/sequence.
| stdAc::state_t IRToshibaAC::toCommon | ( | const stdAc::state_t * | prev = NULL | ) | const | 
Convert the current internal state into its stdAc::state_t equivalent.
| 
 | static | 
| 
 | static | 
| String IRToshibaAC::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.
| 
 | private | 
Store of the previously set mode.
| 
 | private | 
Flag indicating if we need to send a swing message.
| 
 | private | 
The saved swing state/mode/command.
| 
 | private | 
A backup copy of the state.
 1.8.17
 1.8.17