Class for handling detailed Rhoss A/C messages.
More...
#include <ir_Rhoss.h>
|
| | IRRhossAc (const uint16_t pin, const bool inverted=false, const bool use_modulation=true) |
| | Class constructor.
|
| |
| void | stateReset () |
| | Reset the internals of the object to a known good state.
|
| |
| void | send (const uint16_t repeat=kRhossDefaultRepeat) |
| | Send the current internal state as an IR message.
|
| |
| int8_t | calibrate (void) |
| | Run the calibration to calculate uSec timing offsets for this platform.
|
| |
| void | begin () |
| | Set up hardware to be able to send a message.
|
| |
| void | setPower (const bool state) |
| | Set the internal state to have the desired power.
|
| |
| bool | getPower (void) const |
| | Get the power setting from the internal state.
|
| |
| void | on (void) |
| | Set the internal state to have the power on.
|
| |
| void | off (void) |
| | Set the internal state to have the power off.
|
| |
| void | setTemp (const uint8_t temp) |
| | Set the temperature.
|
| |
| uint8_t | getTemp (void) const |
| | Get the current temperature setting.
|
| |
| void | setFan (const uint8_t speed) |
| | Set the speed of the fan.
|
| |
| uint8_t | getFan (void) const |
| | Get the current fan speed setting.
|
| |
| void | setSwing (const bool state) |
| | Set the Vertical Swing mode of the A/C.
|
| |
| uint8_t | getSwing (void) const |
| | Get the Vertical Swing speed of the A/C.
|
| |
| void | setMode (const uint8_t mode) |
| | Set the desired operation mode.
|
| |
| uint8_t | getMode (void) const |
| | Get the current operation mode setting.
|
| |
| uint8_t * | getRaw (void) |
| | Get the raw state of the object, suitable to be sent with the appropriate IRsend object method.
|
| |
| void | setRaw (const uint8_t state[]) |
| | Set the raw state of the object.
|
| |
| stdAc::state_t | toCommon (void) const |
| | Convert the current internal state into its stdAc::state_t equivalent.
|
| |
| String | toString (void) const |
| | Convert the current internal state into a human readable string.
|
| |
|
| void | checksum (void) |
| | Update the checksum value for the internal state.
|
| |
Class for handling detailed Rhoss A/C messages.
◆ IRRhossAc()
| IRRhossAc::IRRhossAc |
( |
const uint16_t |
pin, |
|
|
const bool |
inverted = false, |
|
|
const bool |
use_modulation = true |
|
) |
| |
|
explicit |
Class constructor.
- Parameters
-
| [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? |
◆ begin()
| void IRRhossAc::begin |
( |
void |
| ) |
|
Set up hardware to be able to send a message.
◆ calcChecksum()
| uint8_t IRRhossAc::calcChecksum |
( |
const uint8_t |
state[], |
|
|
const uint16_t |
length = kRhossStateLength |
|
) |
| |
|
static |
Calculate the checksum for the supplied state.
- Parameters
-
| [in] | state | The source state to generate the checksum from. |
| [in] | length | Length of the supplied state to checksum. |
- Returns
- The checksum value.
◆ calibrate()
| int8_t IRRhossAc::calibrate |
( |
void |
| ) |
|
|
inline |
Run the calibration to calculate uSec timing offsets for this platform.
- Returns
- The uSec timing offset needed per modulation of the IR Led.
- Note
- This will produce a 65ms IR signal pulse at 38kHz. Only ever needs to be run once per object instantiation, if at all.
◆ checksum()
| void IRRhossAc::checksum |
( |
void |
| ) |
|
|
private |
Update the checksum value for the internal state.
◆ convertFan()
Convert a stdAc::fanspeed_t enum into it's native speed.
- Parameters
-
| [in] | speed | The enum to be converted. |
- Returns
- The native equivalent of the enum.
◆ convertMode()
Convert a stdAc::opmode_t enum into its native mode.
- Parameters
-
| [in] | mode | The enum to be converted. |
- Returns
- The native equivalent of the enum.
◆ getFan()
| uint8_t IRRhossAc::getFan |
( |
void |
| ) |
const |
Get the current fan speed setting.
- Returns
- The current fan speed.
◆ getMode()
| uint8_t IRRhossAc::getMode |
( |
void |
| ) |
const |
Get the current operation mode setting.
- Returns
- The current operation mode.
◆ getPower()
| bool IRRhossAc::getPower |
( |
void |
| ) |
const |
Get the power setting from the internal state.
- Returns
- A boolean indicating the power setting.
◆ getRaw()
| uint8_t * IRRhossAc::getRaw |
( |
void |
| ) |
|
Get the raw state of the object, suitable to be sent with the appropriate IRsend object method.
- Returns
- A PTR to the internal state.
◆ getSwing()
| uint8_t IRRhossAc::getSwing |
( |
void |
| ) |
const |
Get the Vertical Swing speed of the A/C.
- Returns
- The native swing speed setting.
◆ getTemp()
| uint8_t IRRhossAc::getTemp |
( |
void |
| ) |
const |
Get the current temperature setting.
- Returns
- Get current setting for temp. in degrees celsius.
◆ off()
| void IRRhossAc::off |
( |
void |
| ) |
|
Set the internal state to have the power off.
◆ on()
| void IRRhossAc::on |
( |
void |
| ) |
|
Set the internal state to have the power on.
◆ send()
Send the current internal state as an IR message.
- Parameters
-
| [in] | repeat | Nr. of times the message will be repeated. |
◆ setFan()
| void IRRhossAc::setFan |
( |
const uint8_t |
speed | ) |
|
Set the speed of the fan.
- Parameters
-
| [in] | speed | The desired setting. |
◆ setMode()
| void IRRhossAc::setMode |
( |
const uint8_t |
mode | ) |
|
Set the desired operation mode.
- Parameters
-
| [in] | mode | The desired operation mode. |
◆ setPower()
| void IRRhossAc::setPower |
( |
const bool |
on | ) |
|
Set the internal state to have the desired power.
- Parameters
-
| [in] | on | The desired power state. |
◆ setRaw()
| void IRRhossAc::setRaw |
( |
const uint8_t |
state[] | ) |
|
Set the raw state of the object.
- Parameters
-
| [state] | state The raw state from the native IR message. |
◆ setSwing()
| void IRRhossAc::setSwing |
( |
const bool |
state | ) |
|
Set the Vertical Swing mode of the A/C.
- Parameters
-
| [in] | state | true, the Swing is on. false, the Swing is off. |
◆ setTemp()
| void IRRhossAc::setTemp |
( |
const uint8_t |
degrees | ) |
|
Set the temperature.
- Parameters
-
| [in] | degrees | The temperature in degrees celsius. |
◆ stateReset()
| void IRRhossAc::stateReset |
( |
void |
| ) |
|
Reset the internals of the object to a known good state.
◆ toCommon()
Convert the current internal state into its stdAc::state_t equivalent.
- Returns
- The stdAc equivalent of the native settings.
◆ toCommonFanSpeed()
Convert a native fan speed into its stdAc equivalent.
- Parameters
-
| [in] | speed | The native setting to be converted. |
- Returns
- The stdAc equivalent of the native setting.
◆ toCommonMode()
Convert a native mode into its stdAc equivalent.
- Parameters
-
| [in] | mode | The native setting to be converted. |
- Returns
- The stdAc equivalent of the native setting.
◆ toString()
| String IRRhossAc::toString |
( |
void |
| ) |
const |
Convert the current internal state into a human readable string.
- Returns
- A human readable string.
◆ validChecksum()
| bool IRRhossAc::validChecksum |
( |
const uint8_t |
state[], |
|
|
const uint16_t |
length = kRhossStateLength |
|
) |
| |
|
static |
Verify the checksum is valid for a given state.
- Parameters
-
| [in] | state | The array to verify the checksum of. |
| [in] | length | The size of the state. |
- Returns
- A boolean indicating if it's checksum is valid.
◆ _irsend
The documentation for this class was generated from the following files: