Go to the documentation of this file.
22 #include "IRsend_test.h"
78 #define TROTEC_AUTO kTrotecAuto
79 #define TROTEC_COOL kTrotecCool
80 #define TROTEC_DRY kTrotecDry
81 #define TROTEC_FAN kTrotecFan
82 #define TROTEC_FAN_LOW kTrotecFanLow
83 #define TROTEC_FAN_MED kTrotecFanMed
84 #define TROTEC_FAN_HIGH kTrotecFanHigh
85 #define TROTEC_MIN_TEMP kTrotecMinTemp
86 #define TROTEC_MAX_TEMP kTrotecMaxTemp
87 #define TROTEC_MAX_TIMER kTrotecMaxTimer
93 explicit IRTrotecESP(
const uint16_t pin,
const bool inverted =
false,
94 const bool use_modulation =
true);
102 #endif // SEND_TROTEC
111 void setTemp(
const uint8_t celsius);
121 void setMode(
const uint8_t mode);
130 void setRaw(
const uint8_t state[]);
154 #endif // IR_TROTEC_H_
stdAc::state_t toCommon(void) const
Convert the current internal state into its stdAc::state_t equivalent.
Definition: ir_Trotec.cpp:259
void checksum(void)
Calculate & set the checksum for the current internal state of the remote.
Definition: ir_Trotec.cpp:96
uint8_t getMode(void) const
Get the operating mode setting of the A/C.
Definition: ir_Trotec.cpp:165
uint8_t Hours
Definition: ir_Trotec.h:50
const uint16_t kTrotecDefaultRepeat
Definition: IRremoteESP8266.h:1113
uint8_t Sleep
Definition: ir_Trotec.h:42
fanspeed_t
Common A/C settings for Fan Speeds.
Definition: IRsend.h:58
String toString(void) const
Convert the current internal state into a human readable string.
Definition: ir_Trotec.cpp:285
void setFan(const uint8_t fan)
Definition: ir_Trotec.h:117
void begin(void)
Set up hardware to be able to send a message.
Definition: ir_Trotec.cpp:68
uint8_t Intro1
Definition: ir_Trotec.h:30
const uint8_t kTrotecFanMed
Definition: ir_Trotec.h:68
uint8_t getTimer(void) const
Get the timer time in nr. of Hours.
Definition: ir_Trotec.cpp:204
uint8_t * getRaw(void)
Get a PTR to the internal state/code for this protocol.
Definition: ir_Trotec.cpp:115
const uint8_t kTrotecIntro2
Definition: ir_Trotec.h:60
uint8_t Power
Definition: ir_Trotec.h:36
const uint8_t kTrotecFanHigh
Definition: ir_Trotec.h:69
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
uint8_t Sum
Definition: ir_Trotec.h:54
std::string String
Definition: IRremoteESP8266.h:1208
bool getPower(void) const
Get the value of the current power setting.
Definition: ir_Trotec.cpp:140
static bool validChecksum(const uint8_t state[], const uint16_t length=kTrotecStateLength)
Verify the checksum is valid for a given state.
Definition: ir_Trotec.cpp:91
const uint8_t kTrotecMinTemp
Definition: ir_Trotec.h:71
const uint8_t kTrotecDefTemp
Definition: ir_Trotec.h:72
void on(void)
Set the requested power state of the A/C to on.
Definition: ir_Trotec.cpp:127
const uint8_t kTrotecMaxTimer
Definition: ir_Trotec.h:75
bool getSleep(void) const
Get the Sleep setting of the A/C.
Definition: ir_Trotec.cpp:191
static uint8_t convertMode(const stdAc::opmode_t mode)
Convert a stdAc::opmode_t enum into its native mode.
Definition: ir_Trotec.cpp:209
Native representation of a Trotec A/C message.
Definition: ir_Trotec.h:26
const uint8_t kTrotecDry
Definition: ir_Trotec.h:64
void setTemp(const uint8_t celsius)
Set the temperature.
Definition: ir_Trotec.cpp:171
void setMode(const uint8_t mode)
Set the operating mode of the A/C.
Definition: ir_Trotec.cpp:159
const uint16_t kTrotecStateLength
Definition: IRremoteESP8266.h:1111
uint8_t Temp
Definition: ir_Trotec.h:40
const uint8_t kTrotecMaxTemp
Definition: ir_Trotec.h:73
const uint8_t kTrotecFanLow
Definition: ir_Trotec.h:67
uint8_t raw[kTrotecStateLength]
Remote state in IR code form.
Definition: ir_Trotec.h:27
void stateReset(void)
Reset the state of the remote to a known good state/sequence.
Definition: ir_Trotec.cpp:101
int8_t calibrate(void)
Run the calibration to calculate uSec timing offsets for this platform.
Definition: ir_Trotec.h:101
void setTimer(const uint8_t timer)
Set the timer time in nr. of Hours.
Definition: ir_Trotec.cpp:197
uint8_t Mode
Definition: ir_Trotec.h:34
uint8_t getFan(void) const
Definition: ir_Trotec.h:118
void setPower(const bool state)
Change the power setting.
Definition: ir_Trotec.cpp:134
const uint8_t kTrotecFan
Definition: ir_Trotec.h:65
static stdAc::opmode_t toCommonMode(const uint8_t mode)
Convert a native mode into its stdAc equivalent.
Definition: ir_Trotec.cpp:236
IRsend _irsend
Instance of the IR send class.
Definition: ir_Trotec.h:142
const uint8_t kTrotecCool
Definition: ir_Trotec.h:63
void setSleep(const bool on)
Set the Sleep setting of the A/C.
Definition: ir_Trotec.cpp:185
uint8_t getSpeed(void) const
Get the current fan speed setting.
Definition: ir_Trotec.cpp:153
void off(void)
Set the requested power state of the A/C to off.
Definition: ir_Trotec.cpp:130
uint8_t Intro2
Definition: ir_Trotec.h:32
TrotecProtocol _
Definition: ir_Trotec.h:148
static uint8_t calcChecksum(const uint8_t state[], const uint16_t length=kTrotecStateLength)
Calculate the checksum for a given state.
Definition: ir_Trotec.cpp:82
void send(const uint16_t repeat=kTrotecDefaultRepeat)
Send the current internal state as an IR message.
Definition: ir_Trotec.cpp:73
uint8_t Fan
Definition: ir_Trotec.h:37
const uint8_t kTrotecAuto
Definition: ir_Trotec.h:62
static stdAc::fanspeed_t toCommonFanSpeed(const uint8_t speed)
Convert a native fan speed into its stdAc equivalent.
Definition: ir_Trotec.cpp:248
Class for handling detailed Trotec A/C messages.
Definition: ir_Trotec.h:91
IRTrotecESP(const uint16_t pin, const bool inverted=false, const bool use_modulation=true)
Class constructor.
Definition: ir_Trotec.cpp:63
uint8_t Timer
Definition: ir_Trotec.h:47
static uint8_t convertFan(const stdAc::fanspeed_t speed)
Convert a stdAc::fanspeed_t enum into it's native speed.
Definition: ir_Trotec.cpp:222
Structure to hold a common A/C state.
Definition: IRsend.h:97
const uint8_t kTrotecIntro1
Definition: ir_Trotec.h:59
uint8_t getTemp(void) const
Get the current temperature setting.
Definition: ir_Trotec.cpp:179
void setRaw(const uint8_t state[])
Set the internal state from a valid code for this protocol.
Definition: ir_Trotec.cpp:122
void setSpeed(const uint8_t fan)
Set the speed of the fan.
Definition: ir_Trotec.cpp:146
opmode_t
Common A/C settings for A/C operating modes.
Definition: IRsend.h:46