Go to the documentation of this file.
27 #define __STDC_LIMIT_MACROS
35 #include "IRsend_test.h"
106 #define TOSHIBA_AC_AUTO kToshibaAcAuto
107 #define TOSHIBA_AC_COOL kToshibaAcCool
108 #define TOSHIBA_AC_DRY kToshibaAcDry
109 #define TOSHIBA_AC_HEAT kToshibaAcHeat
110 #define TOSHIBA_AC_POWER kToshibaAcPower
111 #define TOSHIBA_AC_FAN_AUTO kToshibaAcFanAuto
112 #define TOSHIBA_AC_FAN_MAX kToshibaAcFanMax
113 #define TOSHIBA_AC_MIN_TEMP kToshibaAcMinTemp
114 #define TOSHIBA_AC_MAX_TEMP kToshibaAcMaxTemp
120 explicit IRToshibaAC(
const uint16_t pin,
const bool inverted =
false,
121 const bool use_modulation =
true);
130 #endif // SEND_TOSHIBA_AC
136 void setTemp(
const uint8_t degrees);
138 void setFan(
const uint8_t speed);
139 uint8_t
getFan(
void)
const;
144 void setMode(
const uint8_t mode);
145 uint8_t
getMode(
const bool raw =
false)
const;
146 void setRaw(
const uint8_t newState[]);
149 const uint16_t size);
153 uint8_t
getSwing(
const bool raw =
true)
const;
154 void setSwing(
const uint8_t setting);
183 #endif // IR_TOSHIBA_H_
void off(void)
Set the requested power state of the A/C to off.
Definition: ir_Toshiba.cpp:186
static stdAc::opmode_t toCommonMode(const uint8_t mode)
Convert a native mode into its stdAc equivalent.
Definition: ir_Toshiba.cpp:368
Class for handling detailed Toshiba A/C messages.
Definition: ir_Toshiba.h:118
bool getEcono(void) const
Get the Economy mode setting of the A/C.
Definition: ir_Toshiba.cpp:319
void setSwing(const uint8_t setting)
Set the swing setting of the A/C.
Definition: ir_Toshiba.cpp:247
const uint8_t kToshibaAcCool
Definition: ir_Toshiba.h:92
void setTurbo(const bool on)
Set the Turbo (Powerful) setting of the A/C.
Definition: ir_Toshiba.cpp:308
uint8_t getSwing(const bool raw=true) const
Get the swing setting of the A/C.
Definition: ir_Toshiba.cpp:241
static uint8_t calcChecksum(const uint8_t state[], const uint16_t length=kToshibaACStateLength)
Calculate the checksum for a given state.
Definition: ir_Toshiba.cpp:151
uint8_t _swing_mode
The saved swing state/mode/command.
Definition: ir_Toshiba.h:174
void on(void)
Set the requested power state of the A/C to on.
Definition: ir_Toshiba.cpp:183
void _backupState(void)
Make a copy of the internal code-form A/C state.
Definition: ir_Toshiba.cpp:122
static uint8_t convertMode(const stdAc::opmode_t mode)
Convert a stdAc::opmode_t enum into its native mode.
Definition: ir_Toshiba.cpp:340
fanspeed_t
Common A/C settings for Fan Speeds.
Definition: IRsend.h:58
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.
Definition: ir_Toshiba.cpp:101
const uint8_t kToshibaAcFanAuto
Definition: ir_Toshiba.h:97
void send(const uint16_t repeat=kToshibaACMinRepeat)
Send the current internal state as IR messages.
Definition: ir_Toshiba.cpp:81
void setEcono(const bool on)
Set the Economy mode setting of the A/C.
Definition: ir_Toshiba.cpp:328
const uint16_t kToshibaAcInvertedLength
Nr. of leading bytes in inverted pairs.
Definition: ir_Toshiba.h:81
void setFan(const uint8_t speed)
Set the speed of the fan.
Definition: ir_Toshiba.cpp:221
const uint8_t kToshibaAcMinTemp
17C
Definition: ir_Toshiba.h:88
IRsend _irsend
Instance of the IR send class.
Definition: ir_Toshiba.h:164
int8_t calibrate(void)
Run the calibration to calculate uSec timing offsets for this platform.
Definition: ir_Toshiba.h:129
uint8_t * getRaw(void)
Get a PTR to the internal state/code for this protocol with all integrity checks passing.
Definition: ir_Toshiba.cpp:134
void checksum(const uint16_t length=kToshibaACStateLength)
Calculate & set the checksum for the current internal state of the remote.
Definition: ir_Toshiba.cpp:169
uint8_t raw[kToshibaACStateLengthLong]
The state in code form.
Definition: ir_Toshiba.h:40
uint8_t EcoTurbo
Definition: ir_Toshiba.h:72
Class for sending all basic IR protocols.
Definition: IRsend.h:187
int8_t calibrate(uint16_t hz=38000U)
Calculate & set any offsets to account for execution times during sending.
Definition: IRsend.cpp:207
const uint8_t kToshibaAcSwingOn
0b01
Definition: ir_Toshiba.h:85
void setPower(const bool on)
Change the power setting.
Definition: ir_Toshiba.cpp:190
std::string String
Definition: IRremoteESP8266.h:1199
IRToshibaAC(const uint16_t pin, const bool inverted=false, const bool use_modulation=true)
Class constructor.
Definition: ir_Toshiba.cpp:60
uint8_t Fan
Definition: ir_Toshiba.h:67
uint16_t getStateLength(void) const
Get the length of the current internal state per the protocol structure.
Definition: ir_Toshiba.cpp:110
String toString(void) const
Convert the current internal state into a human readable string.
Definition: ir_Toshiba.cpp:422
uint8_t LongMsg
Definition: ir_Toshiba.h:56
const uint8_t kToshibaAcSwingOff
0b10
Definition: ir_Toshiba.h:86
bool getPower(void) const
Get the value of the current power setting.
Definition: ir_Toshiba.cpp:201
const uint8_t kToshibaAcFanMed
Definition: ir_Toshiba.h:99
void begin(void)
Set up hardware to be able to send a message.
Definition: ir_Toshiba.cpp:76
const uint8_t kToshibaAcMinLength
Min Nr. of bytes in a message.
Definition: ir_Toshiba.h:79
const uint8_t kToshibaAcSwingStep
0b00
Definition: ir_Toshiba.h:84
void stateReset(void)
Reset the state of the remote to a known good state/sequence.
Definition: ir_Toshiba.cpp:66
void _restoreState(void)
Recover the internal code-form A/C state from the backup.
Definition: ir_Toshiba.cpp:127
uint8_t getTemp(void) const
Get the current temperature setting.
Definition: ir_Toshiba.cpp:215
const uint8_t kToshibaAcFan
Definition: ir_Toshiba.h:95
static stdAc::fanspeed_t toCommonFanSpeed(const uint8_t speed)
Convert a native fan speed into its stdAc equivalent.
Definition: ir_Toshiba.cpp:382
const uint8_t kToshibaAcHeat
Definition: ir_Toshiba.h:94
void setMode(const uint8_t mode)
Set the operating mode of the A/C.
Definition: ir_Toshiba.cpp:275
uint8_t Length
< Known lengths are: 1 (56 bit message) 3 (72 bit message) 4 (80 bit message)
Definition: ir_Toshiba.h:51
const uint8_t kToshibaAcTurboOn
Definition: ir_Toshiba.h:102
void setRaw(const uint8_t newState[])
Set the internal state from a valid code for this protocol.
Definition: ir_Toshiba.cpp:141
Native representation of a Toshiba A/C message.
Definition: ir_Toshiba.h:39
uint8_t Swing
Definition: ir_Toshiba.h:61
const uint8_t kToshibaAcLengthByte
Byte pos of the "length" attribute.
Definition: ir_Toshiba.h:78
uint8_t getMode(const bool raw=false) const
Get the operating mode setting of the A/C.
Definition: ir_Toshiba.cpp:262
uint8_t Mode
Definition: ir_Toshiba.h:65
const uint16_t kToshibaACMinRepeat
Definition: IRremoteESP8266.h:1096
const uint16_t kToshibaACStateLength
Definition: IRremoteESP8266.h:1094
bool _send_swing
Flag indicating if we need to send a swing message.
Definition: ir_Toshiba.h:173
const uint16_t kToshibaACStateLengthLong
Definition: IRremoteESP8266.h:1099
static bool validChecksum(const uint8_t state[], const uint16_t length=kToshibaACStateLength)
Verify the checksum is valid for a given state.
Definition: ir_Toshiba.cpp:160
stdAc::state_t toCommon(void) const
Convert the current internal state into its stdAc::state_t equivalent.
Definition: ir_Toshiba.cpp:395
const uint8_t kToshibaAcDry
Definition: ir_Toshiba.h:93
uint8_t getFan(void) const
Get the current fan speed setting.
Definition: ir_Toshiba.cpp:232
uint8_t backup[kToshibaACStateLengthLong]
A backup copy of the state.
Definition: ir_Toshiba.h:171
uint8_t ShortMsg
Definition: ir_Toshiba.h:58
bool getTurbo(void) const
Get the Turbo (Powerful) setting of the A/C.
Definition: ir_Toshiba.cpp:299
const uint8_t kToshibaAcAuto
Definition: ir_Toshiba.h:91
const uint8_t kToshibaAcMaxTemp
30C
Definition: ir_Toshiba.h:89
static uint8_t convertFan(const stdAc::fanspeed_t speed)
Convert a stdAc::fanspeed_t enum into it's native speed.
Definition: ir_Toshiba.cpp:354
void setTemp(const uint8_t degrees)
Set the temperature.
Definition: ir_Toshiba.cpp:207
uint8_t Temp
Definition: ir_Toshiba.h:63
uint8_t _prev_mode
Store of the previously set mode.
Definition: ir_Toshiba.h:172
Structure to hold a common A/C state.
Definition: IRsend.h:97
const uint8_t kToshibaAcFanMax
Definition: ir_Toshiba.h:100
const uint8_t kToshibaAcEconoOn
Definition: ir_Toshiba.h:103
ToshibaProtocol _
Definition: ir_Toshiba.h:170
const uint8_t kToshibaAcFanMin
Definition: ir_Toshiba.h:98
void setStateLength(const uint16_t size)
Set the internal length of the current internal state per the protocol.
Definition: ir_Toshiba.cpp:116
const uint8_t kToshibaAcOff
Definition: ir_Toshiba.h:96
opmode_t
Common A/C settings for A/C operating modes.
Definition: IRsend.h:46