Class for handling detailed York A/C messages.
More...
#include <ir_York.h>
|
| | IRYorkAc (const uint16_t pin, const bool inverted=false, const bool use_modulation=true) |
| | Class constructor.
|
| |
| void | stateReset () |
| |
| void | send (const uint16_t repeat=kNoRepeat) |
| | 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 | setPowerToggle (const bool on) |
| |
| bool | getPowerToggle () const |
| |
| void | setTemp (const uint8_t temp) |
| | Set the temperature.
|
| |
| uint8_t | getTemp () const |
| | Get the current temperature setting.
|
| |
| void | setFan (const uint8_t speed) |
| | Set the speed of the fan.
|
| |
| uint8_t | getFan () const |
| | Get the current fan speed setting.
|
| |
| void | setMode (const uint8_t mode) |
| | Set the desired operation mode.
|
| |
| uint8_t | getMode () const |
| | Get the current operation mode setting.
|
| |
| uint16_t | getOnTimer (void) const |
| | Get the On Timer setting of the A/C.
|
| |
| uint16_t | getOffTimer (void) const |
| | Get the Off Timer setting of the A/C.
|
| |
| void | setOnTimer (const uint16_t mins) |
| | Set the On Timer value of the A/C.
|
| |
| void | setOffTimer (const uint16_t mins) |
| | Set the Off Timer value of the A/C.
|
| |
| uint8_t * | getRaw () |
| | Get the raw state of the object, suitable to be sent with the appropriate IRsend object method.
|
| |
| void | setRaw (const uint8_t new_code[], const uint16_t length=kYorkStateLength) |
| | Set the internal state from a valid code for this protocol.
|
| |
| void | calcChecksum () |
| | CRC16-16 (a.k.a. CRC-16-IBM)
|
| |
| stdAc::state_t | toCommon (const stdAc::state_t *prev=NULL) const |
| | Convert the current internal state into its stdAc::state_t equivalent.
|
| |
| String | toString () const |
| | Convert the current internal state into a human readable string.
|
| |
Class for handling detailed York A/C messages.
◆ IRYorkAc()
| IRYorkAc::IRYorkAc |
( |
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 IRYorkAc::begin |
( |
void |
| ) |
|
Set up hardware to be able to send a message.
◆ calcChecksum()
| void IRYorkAc::calcChecksum |
( |
| ) |
|
CRC16-16 (a.k.a. CRC-16-IBM)
◆ calibrate()
| int8_t IRYorkAc::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.
◆ 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 IRYorkAc::getFan |
( |
void |
| ) |
const |
Get the current fan speed setting.
- Returns
- The current fan speed.
◆ getMode()
| uint8_t IRYorkAc::getMode |
( |
void |
| ) |
const |
Get the current operation mode setting.
- Returns
- The current operation mode.
◆ getOffTimer()
| uint16_t IRYorkAc::getOffTimer |
( |
void |
| ) |
const |
Get the Off Timer setting of the A/C.
- Returns
- The Nr. of minutes the Off Timer is set for.
- Note
- Sleep & Off Timer share the same timer.
◆ getOnTimer()
| uint16_t IRYorkAc::getOnTimer |
( |
void |
| ) |
const |
Get the On Timer setting of the A/C.
- Returns
- The Nr. of minutes the On Timer is set for.
◆ getPowerToggle()
| bool IRYorkAc::getPowerToggle |
( |
| ) |
const |
◆ getRaw()
| uint8_t * IRYorkAc::getRaw |
( |
void |
| ) |
|
Get the raw state of the object, suitable to be sent with the appropriate IRsend object method.
- Returns
- A copy of the internal state.
◆ getTemp()
| uint8_t IRYorkAc::getTemp |
( |
void |
| ) |
const |
Get the current temperature setting.
- Returns
- Get current setting for temp. in degrees celsius.
◆ send()
| void IRYorkAc::send |
( |
const uint16_t |
repeat = kNoRepeat | ) |
|
Send the current internal state as an IR message.
- Parameters
-
| [in] | repeat | Nr. of times the message will be repeated. |
◆ setFan()
| void IRYorkAc::setFan |
( |
const uint8_t |
speed | ) |
|
Set the speed of the fan.
- Parameters
-
| [in] | speed | The desired setting. |
- Note
- The fan speed is locked to Low when in Dry mode, to auto when in auto mode. "Fan" mode has no support for "auto" speed.
◆ setMode()
| void IRYorkAc::setMode |
( |
const uint8_t |
mode | ) |
|
Set the desired operation mode.
- Parameters
-
| [in] | mode | The desired operation mode. |
◆ setOffTimer()
| void IRYorkAc::setOffTimer |
( |
const uint16_t |
nr_of_mins | ) |
|
Set the Off Timer value of the A/C.
- Parameters
-
| [in] | nr_of_mins | The number of minutes the timer should be. |
- Note
- The timer time only has a resolution of 10 mins.
-
Setting the Off Timer active will cancel the Sleep timer/setting.
◆ setOnTimer()
| void IRYorkAc::setOnTimer |
( |
const uint16_t |
nr_of_mins | ) |
|
Set the On Timer value of the A/C.
- Parameters
-
| [in] | nr_of_mins | The number of minutes the timer should be. |
- Note
- The timer time only has a resolution of 10 mins.
-
Setting the On Timer active will cancel the Sleep timer/setting.
◆ setPowerToggle()
| void IRYorkAc::setPowerToggle |
( |
const bool |
on | ) |
|
◆ setRaw()
| void IRYorkAc::setRaw |
( |
const uint8_t |
new_code[], |
|
|
const uint16_t |
length = kYorkStateLength |
|
) |
| |
Set the internal state from a valid code for this protocol.
- Parameters
-
| [in] | new_code | A valid code for this protocol. |
| [in] | length | Length of the code in bytes. |
◆ setTemp()
| void IRYorkAc::setTemp |
( |
const uint8_t |
degrees | ) |
|
Set the temperature.
- Parameters
-
| [in] | degrees | The temperature in degrees celsius. |
◆ stateReset()
| void IRYorkAc::stateReset |
( |
| ) |
|
◆ toCommon()
Convert the current internal state into its stdAc::state_t equivalent.
- Parameters
-
| [in] | prev | Ptr to the previous state if required. |
- 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 IRYorkAc::toString |
( |
void |
| ) |
const |
Convert the current internal state into a human readable string.
- Returns
- A human readable string.
◆ _irsend
Instance of the IR send class.
The documentation for this class was generated from the following files: