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) |
Get the value of the current power setting. More... | |
void | setTemp (const uint8_t degrees) |
Set the temperature. More... | |
uint8_t | getTemp (void) |
Get the current temperature setting. More... | |
void | setFan (const uint8_t speed) |
Set the speed of the fan. More... | |
uint8_t | getFan (void) |
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) |
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) |
Get the Economy mode 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) |
Get the operating mode setting of the A/C. More... | |
void | setRaw (const uint8_t newState[]) |
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) |
Get the length of the current internal state per the protocol structure. More... | |
uint8_t | getSwing (const bool raw=true) |
Get the swing setting of the A/C. More... | |
void | setSwing (const uint8_t setting) |
Set the swing setting of the A/C. More... | |
uint8_t | convertMode (const stdAc::opmode_t mode) |
Convert a stdAc::opmode_t enum into its native mode. More... | |
uint8_t | convertFan (const stdAc::fanspeed_t speed) |
Convert a stdAc::fanspeed_t enum into it's native speed. More... | |
stdAc::state_t | toCommon (void) |
Convert the current internal state into its stdAc::state_t equivalent. More... | |
String | toString (void) |
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 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... | |
uint8_t | remote_state [kToshibaACStateLengthLong] |
The state in code form. More... | |
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. |
uint8_t IRToshibaAC::convertFan | ( | const stdAc::fanspeed_t | speed | ) |
Convert a stdAc::fanspeed_t enum into it's native speed.
[in] | speed | The enum to be converted. |
uint8_t IRToshibaAC::convertMode | ( | const stdAc::opmode_t | mode | ) |
Convert a stdAc::opmode_t enum into its native mode.
[in] | mode | The enum to be converted. |
bool IRToshibaAC::getEcono | ( | void | ) |
Get the Economy mode setting of the A/C.
uint8_t IRToshibaAC::getFan | ( | void | ) |
Get the current fan speed setting.
|
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 | ) |
Get the operating mode setting of the A/C.
[in] | raw | Get the value without any intelligent processing. |
bool IRToshibaAC::getPower | ( | void | ) |
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 | ) |
Get the length of the current internal state per the protocol structure.
uint8_t IRToshibaAC::getSwing | ( | const bool | raw = true | ) |
Get the swing setting of the A/C.
[in] | raw | Calculate the answer from just the state data. |
uint8_t IRToshibaAC::getTemp | ( | void | ) |
Get the current temperature setting.
bool IRToshibaAC::getTurbo | ( | void | ) |
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::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[] | ) |
Set the internal state from a valid code for this protocol.
[in] | newState | A valid code for this protocol. |
|
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 | ( | void | ) |
Convert the current internal state into its stdAc::state_t equivalent.
|
static |
|
static |
String IRToshibaAC::toString | ( | void | ) |
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 |
Instance of the IR send class.
|
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.
|
private |
Store of the previously set mode.
|
private |
The state in code form.