IRremoteESP8266
|
Class for handling detailed Trotec A/C messages. More...
#include <ir_Trotec.h>
Public Member Functions | |
IRTrotecESP (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) |
Get the value of the current power setting. More... | |
void | setTemp (const uint8_t celsius) |
Set the temperature. More... | |
uint8_t | getTemp (void) |
Get the current temperature setting. More... | |
void | setSpeed (const uint8_t fan) |
Set the speed of the fan. More... | |
uint8_t | getSpeed (void) |
Get the current fan speed setting. More... | |
uint8_t | getMode (void) |
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 | getSleep (void) |
Get the Sleep setting of the A/C. More... | |
void | setSleep (const bool on) |
Set the Sleep setting of the A/C. More... | |
uint8_t | getTimer (void) |
Get the timer time in nr. of Hours. More... | |
void | setTimer (const uint8_t timer) |
Set the timer time in nr. of Hours. 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... | |
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 bool | validChecksum (const uint8_t state[], const uint16_t length=kTrotecStateLength) |
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 (void) |
Calculate & set the checksum for the current internal state of the remote. More... | |
Static Private Member Functions | |
static uint8_t | calcChecksum (const uint8_t state[], const uint16_t length=kTrotecStateLength) |
Calculate the checksum for a given state. More... | |
Private Attributes | |
IRsend | _irsend |
Instance of the IR send class. More... | |
uint8_t | remote_state [kTrotecStateLength] |
Remote state in IR code form. More... | |
Class for handling detailed Trotec 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 IRTrotecESP::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.
uint8_t IRTrotecESP::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 IRTrotecESP::convertMode | ( | const stdAc::opmode_t | mode | ) |
Convert a stdAc::opmode_t enum into its native mode.
[in] | mode | The enum to be converted. |
uint8_t IRTrotecESP::getMode | ( | void | ) |
Get the operating mode setting of the A/C.
bool IRTrotecESP::getPower | ( | void | ) |
Get the value of the current power setting.
uint8_t * IRTrotecESP::getRaw | ( | void | ) |
Get a PTR to the internal state/code for this protocol.
bool IRTrotecESP::getSleep | ( | void | ) |
Get the Sleep setting of the A/C.
uint8_t IRTrotecESP::getSpeed | ( | void | ) |
Get the current fan speed setting.
uint8_t IRTrotecESP::getTemp | ( | void | ) |
Get the current temperature setting.
uint8_t IRTrotecESP::getTimer | ( | void | ) |
Get the timer time in nr. of Hours.
void IRTrotecESP::off | ( | void | ) |
Set the requested power state of the A/C to off.
void IRTrotecESP::on | ( | void | ) |
Set the requested power state of the A/C to on.
void IRTrotecESP::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 IRTrotecESP::setMode | ( | const uint8_t | mode | ) |
Set the operating mode of the A/C.
[in] | mode | The desired operating mode. |
void IRTrotecESP::setPower | ( | const bool | on | ) |
Change the power setting.
[in] | on | true, the setting is on. false, the setting is off. |
void IRTrotecESP::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 IRTrotecESP::setSleep | ( | const bool | on | ) |
Set the Sleep setting of the A/C.
[in] | on | true, the setting is on. false, the setting is off. |
void IRTrotecESP::setSpeed | ( | const uint8_t | fan | ) |
Set the speed of the fan.
[in] | fan | The desired setting. |
void IRTrotecESP::setTemp | ( | const uint8_t | celsius | ) |
Set the temperature.
[in] | celsius | The temperature in degrees celsius. |
void IRTrotecESP::setTimer | ( | const uint8_t | timer | ) |
Set the timer time in nr. of Hours.
[in] | timer | Nr. of Hours. Max is kTrotecMaxTimer |
void IRTrotecESP::stateReset | ( | void | ) |
Reset the state of the remote to a known good state/sequence.
stdAc::state_t IRTrotecESP::toCommon | ( | void | ) |
Convert the current internal state into its stdAc::state_t equivalent.
|
static |
|
static |
String IRTrotecESP::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 |
Remote state in IR code form.