IRremoteESP8266
ir_Sharp.h
Go to the documentation of this file.
1 // Copyright 2019 crankyoldgit
2 
14 
15 // Supports:
16 // Brand: Sharp, Model: LC-52D62U TV
17 // Brand: Sharp, Model: AY-ZP40KR A/C (A907)
18 // Brand: Sharp, Model: AH-AxSAY A/C (A907)
19 // Brand: Sharp, Model: CRMC-A907 JBEZ remote (A907)
20 // Brand: Sharp, Model: AH-PR13-GL A/C (A903)
21 // Brand: Sharp, Model: CRMC-A903JBEZ remote (A903)
22 // Brand: Sharp, Model: AH-XP10NRY A/C (A903)
23 // Brand: Sharp, Model: CRMC-820 JBEZ remote (A903)
24 // Brand: Sharp, Model: CRMC-A705 JBEZ remote (A705)
25 // Brand: Sharp, Model: AH-A12REVP-1 A/C (A903)
26 // Brand: Sharp, Model: CRMC-A863 JBEZ remote (A903)
27 
28 #ifndef IR_SHARP_H_
29 #define IR_SHARP_H_
30 
31 #ifndef UNIT_TEST
32 #include <Arduino.h>
33 #endif
34 #include "IRrecv.h"
35 #include "IRremoteESP8266.h"
36 #include "IRsend.h"
37 #ifdef UNIT_TEST
38 #include "IRsend_test.h"
39 #endif
40 #include "IRutils.h"
41 
45  struct {
46  // Byte 0~3
47  uint8_t pad[4];
48  // Byte 4
49  uint8_t Temp :4;
50  uint8_t Model :1;
51  uint8_t :3;
52  // Byte 5
53  uint8_t :4;
54  uint8_t PowerSpecial :4;
55  // Byte 6
56  uint8_t Mode :2;
57  uint8_t :1;
58  uint8_t Clean :1;
59  uint8_t Fan :3;
60  uint8_t :1;
61  // Byte 7
62  uint8_t TimerHours :4;
63  uint8_t :2;
64  uint8_t TimerType :1;
65  uint8_t TimerEnabled:1;
66  // Byte 8
67  uint8_t Swing :3;
68  uint8_t :5;
69  // Byte 9
70  uint8_t :8;
71  // Byte 10
72  uint8_t Special :8;
73  // Byte 11
74  uint8_t :2;
75  uint8_t Ion :1;
76  uint8_t :1;
77  uint8_t Model2 :1;
78  uint8_t :3;
79  // Byte 12
80  uint8_t :4;
81  uint8_t Sum :4;
82  };
83 };
84 
85 // Constants
86 const uint16_t kSharpAcHdrMark = 3800;
87 const uint16_t kSharpAcHdrSpace = 1900;
88 const uint16_t kSharpAcBitMark = 470;
89 const uint16_t kSharpAcZeroSpace = 500;
90 const uint16_t kSharpAcOneSpace = 1400;
92 
93 const uint8_t kSharpAcByteTemp = 4;
94 const uint8_t kSharpAcMinTemp = 15; // Celsius
95 const uint8_t kSharpAcMaxTemp = 30; // Celsius
96 
97 const uint8_t kSharpAcPowerUnknown = 0; // 0b0000
98 const uint8_t kSharpAcPowerOnFromOff = 1; // 0b0001
99 const uint8_t kSharpAcPowerOff = 2; // 0b0010
100 const uint8_t kSharpAcPowerOn = 3; // 0b0011 (Normal)
101 const uint8_t kSharpAcPowerSetSpecialOn = 6; // 0b0110
102 const uint8_t kSharpAcPowerSetSpecialOff = 7; // 0b0111
103 const uint8_t kSharpAcPowerTimerSetting = 8; // 0b1000
104 
105 const uint8_t kSharpAcAuto = 0b00; // A907 only
106 const uint8_t kSharpAcFan = 0b00; // A705 only
107 const uint8_t kSharpAcDry = 0b11;
108 const uint8_t kSharpAcCool = 0b10;
109 const uint8_t kSharpAcHeat = 0b01; // A907 only
110 const uint8_t kSharpAcFanAuto = 0b010; // 2
111 const uint8_t kSharpAcFanMin = 0b100; // 4 (FAN1)
112 const uint8_t kSharpAcFanMed = 0b011; // 3 (FAN2)
113 const uint8_t kSharpAcFanA705Low = 0b011; // 3 (A903 too)
114 const uint8_t kSharpAcFanHigh = 0b101; // 5 (FAN3)
115 const uint8_t kSharpAcFanA705Med = 0b101; // 5 (A903 too)
116 const uint8_t kSharpAcFanMax = 0b111; // 7 (FAN4)
117 
118 const uint8_t kSharpAcTimerIncrement = 30; // Mins
119 const uint8_t kSharpAcTimerHoursOff = 0b0000;
120 const uint8_t kSharpAcTimerHoursMax = 0b1100; // 12
121 const uint8_t kSharpAcOffTimerType = 0b0;
122 const uint8_t kSharpAcOnTimerType = 0b1;
123 
124 const uint8_t kSharpAcSwingToggle = 0b111;
125 const uint8_t kSharpAcSwingNoToggle = 0b000;
126 
127 const uint8_t kSharpAcSpecialPower = 0x00;
128 const uint8_t kSharpAcSpecialTurbo = 0x01;
129 const uint8_t kSharpAcSpecialTempEcono = 0x04;
130 const uint8_t kSharpAcSpecialFan = 0x05;
131 const uint8_t kSharpAcSpecialSwing = 0x06;
132 const uint8_t kSharpAcSpecialTimer = 0xC0;
133 const uint8_t kSharpAcSpecialTimerHalfHour = 0xDE;
134 
135 // Classes
137 class IRSharpAc {
138  public:
139  explicit IRSharpAc(const uint16_t pin, const bool inverted = false,
140  const bool use_modulation = true);
141 #if SEND_SHARP_AC
142  void send(const uint16_t repeat = kSharpAcDefaultRepeat);
147  int8_t calibrate(void) { return _irsend.calibrate(); }
148 #endif // SEND_SHARP_AC
149  void begin(void);
150  void setModel(const sharp_ac_remote_model_t model);
151  sharp_ac_remote_model_t getModel(const bool raw = false) const;
152  void on(void);
153  void off(void);
154  void setPower(const bool on, const bool prev_on = true);
155  bool getPower(void) const;
156  bool isPowerSpecial(void) const;
157  void setTemp(const uint8_t temp, const bool save = true);
158  uint8_t getTemp(void) const;
159  void setFan(const uint8_t fan, const bool save = true);
160  uint8_t getFan(void) const;
161  void setMode(const uint8_t mode, const bool save = true);
162  uint8_t getMode(void) const;
163  void setSpecial(const uint8_t mode);
164  uint8_t getSpecial(void) const;
165  bool getTurbo(void) const;
166  void setTurbo(const bool on);
167  bool getSwingToggle(void) const;
168  void setSwingToggle(const bool on);
169  bool getIon(void) const;
170  void setIon(const bool on);
171  bool getEconoToggle(void) const;
172  void setEconoToggle(const bool on);
173  bool getLightToggle(void) const;
174  void setLightToggle(const bool on);
175  uint16_t getTimerTime(void) const;
176  bool getTimerEnabled(void) const;
177  bool getTimerType(void) const;
178  void setTimer(bool enable, bool timer_type, uint16_t mins);
179  bool getClean(void) const;
180  void setClean(const bool on);
181  uint8_t* getRaw(void);
182  void setRaw(const uint8_t new_code[],
183  const uint16_t length = kSharpAcStateLength);
184  static bool validChecksum(uint8_t state[],
185  const uint16_t length = kSharpAcStateLength);
186  static uint8_t convertMode(const stdAc::opmode_t mode);
187  static uint8_t convertFan(const stdAc::fanspeed_t speed,
188  const sharp_ac_remote_model_t model =
190  stdAc::opmode_t toCommonMode(const uint8_t mode) const;
191  stdAc::fanspeed_t toCommonFanSpeed(const uint8_t speed) const;
192  stdAc::state_t toCommon(void) const;
193  String toString(void) const;
194 #ifndef UNIT_TEST
195 
196  private:
198 #else // UNIT_TEST
199  IRsendTest _irsend;
201 #endif // UNIT_TEST
204  uint8_t _temp;
205  uint8_t _mode;
206  uint8_t _fan;
208  void stateReset(void);
209  void checksum(void);
210  static uint8_t calcChecksum(uint8_t state[],
211  const uint16_t length = kSharpAcStateLength);
212  void setPowerSpecial(const uint8_t value);
213  uint8_t getPowerSpecial(void) const;
214  void clearPowerSpecial(void);
215  bool _getEconoToggle(void) const;
216  void _setEconoToggle(const bool on);
217 };
218 
219 #endif // IR_SHARP_H_
IRSharpAc::getEconoToggle
bool getEconoToggle(void) const
Get the Economical mode toggle setting of the A/C.
Definition: ir_Sharp.cpp:602
kSharpAcHeat
const uint8_t kSharpAcHeat
Definition: ir_Sharp.h:109
kSharpAcSpecialTempEcono
const uint8_t kSharpAcSpecialTempEcono
Definition: ir_Sharp.h:129
IRSharpAc::calibrate
int8_t calibrate(void)
Run the calibration to calculate uSec timing offsets for this platform.
Definition: ir_Sharp.h:147
IRSharpAc::getLightToggle
bool getLightToggle(void) const
Get the Light toggle setting of the A/C.
Definition: ir_Sharp.cpp:617
IRSharpAc::setTimer
void setTimer(bool enable, bool timer_type, uint16_t mins)
Set or cancel the timer function.
Definition: ir_Sharp.cpp:646
IRSharpAc::setTemp
void setTemp(const uint8_t temp, const bool save=true)
Set the temperature.
Definition: ir_Sharp.cpp:426
kSharpAcPowerOnFromOff
const uint8_t kSharpAcPowerOnFromOff
Definition: ir_Sharp.h:98
IRSharpAc::off
void off(void)
Set the requested power state of the A/C to off.
Definition: ir_Sharp.cpp:378
kSharpAcOneSpace
const uint16_t kSharpAcOneSpace
Definition: ir_Sharp.h:90
stdAc::fanspeed_t
fanspeed_t
Common A/C settings for Fan Speeds.
Definition: IRsend.h:58
IRSharpAc::_temp
uint8_t _temp
Saved copy of the desired temp.
Definition: ir_Sharp.h:204
kDefaultMessageGap
const uint32_t kDefaultMessageGap
Definition: IRsend.h:41
IRSharpAc::calcChecksum
static uint8_t calcChecksum(uint8_t state[], const uint16_t length=kSharpAcStateLength)
Calculate the checksum for a given state.
Definition: ir_Sharp.cpp:262
kSharpAcFanA705Low
const uint8_t kSharpAcFanA705Low
Definition: ir_Sharp.h:113
IRSharpAc::toCommonFanSpeed
stdAc::fanspeed_t toCommonFanSpeed(const uint8_t speed) const
Convert a native fan speed into its stdAc equivalent.
Definition: ir_Sharp.cpp:748
kSharpAcSpecialTimer
const uint8_t kSharpAcSpecialTimer
Definition: ir_Sharp.h:132
kSharpAcOnTimerType
const uint8_t kSharpAcOnTimerType
Definition: ir_Sharp.h:122
kSharpAcCool
const uint8_t kSharpAcCool
Definition: ir_Sharp.h:108
SharpProtocol::Model2
uint8_t Model2
Definition: ir_Sharp.h:77
IRsend.h
kSharpAcSpecialFan
const uint8_t kSharpAcSpecialFan
Definition: ir_Sharp.h:130
kSharpAcSpecialSwing
const uint8_t kSharpAcSpecialSwing
Definition: ir_Sharp.h:131
IRSharpAc::getIon
bool getIon(void) const
Get the Ion (Filter) setting of the A/C.
Definition: ir_Sharp.cpp:562
kSharpAcOffTimerType
const uint8_t kSharpAcOffTimerType
Definition: ir_Sharp.h:121
IRsend
Class for sending all basic IR protocols.
Definition: IRsend.h:187
kSharpAcMaxTemp
const uint8_t kSharpAcMaxTemp
Definition: ir_Sharp.h:95
IRSharpAc::setFan
void setFan(const uint8_t fan, const bool save=true)
Set the speed of the fan.
Definition: ir_Sharp.cpp:505
IRsend::calibrate
int8_t calibrate(uint16_t hz=38000U)
Calculate & set any offsets to account for execution times during sending.
Definition: IRsend.cpp:207
IRSharpAc::_model
sharp_ac_remote_model_t _model
Saved copy of the model.
Definition: ir_Sharp.h:207
IRSharpAc::IRSharpAc
IRSharpAc(const uint16_t pin, const bool inverted=false, const bool use_modulation=true)
Class constructor.
Definition: ir_Sharp.cpp:243
kSharpAcZeroSpace
const uint16_t kSharpAcZeroSpace
Definition: ir_Sharp.h:89
IRSharpAc::setPower
void setPower(const bool on, const bool prev_on=true)
Change the power setting, including the previous power state.
Definition: ir_Sharp.cpp:383
kSharpAcDry
const uint8_t kSharpAcDry
Definition: ir_Sharp.h:107
String
std::string String
Definition: IRremoteESP8266.h:1208
kSharpAcTimerHoursMax
const uint8_t kSharpAcTimerHoursMax
Definition: ir_Sharp.h:120
kSharpAcPowerOff
const uint8_t kSharpAcPowerOff
Definition: ir_Sharp.h:99
IRSharpAc::getFan
uint8_t getFan(void) const
Get the current fan speed setting.
Definition: ir_Sharp.cpp:525
SharpProtocol
Native representation of a Sharp A/C message.
Definition: ir_Sharp.h:43
kSharpAcSwingNoToggle
const uint8_t kSharpAcSwingNoToggle
Definition: ir_Sharp.h:125
kSharpAcTimerIncrement
const uint8_t kSharpAcTimerIncrement
Definition: ir_Sharp.h:118
IRremoteESP8266.h
kSharpAcPowerSetSpecialOn
const uint8_t kSharpAcPowerSetSpecialOn
Definition: ir_Sharp.h:101
IRSharpAc::convertMode
static uint8_t convertMode(const stdAc::opmode_t mode)
Convert a stdAc::opmode_t enum into its native mode.
Definition: ir_Sharp.cpp:689
IRSharpAc::setTurbo
void setTurbo(const bool on)
Set the Turbo setting of the A/C.
Definition: ir_Sharp.cpp:541
IRSharpAc::setModel
void setModel(const sharp_ac_remote_model_t model)
Set the model of the A/C to emulate.
Definition: ir_Sharp.cpp:312
IRSharpAc::validChecksum
static bool validChecksum(uint8_t state[], const uint16_t length=kSharpAcStateLength)
Verify the checksum is valid for a given state.
Definition: ir_Sharp.cpp:273
kSharpAcSpecialTimerHalfHour
const uint8_t kSharpAcSpecialTimerHalfHour
Definition: ir_Sharp.h:133
kSharpAcTimerHoursOff
const uint8_t kSharpAcTimerHoursOff
Definition: ir_Sharp.h:119
IRSharpAc::getTurbo
bool getTurbo(void) const
Get the Turbo setting of the A/C.
Definition: ir_Sharp.cpp:531
SharpProtocol::Model
uint8_t Model
Definition: ir_Sharp.h:50
SharpProtocol::Clean
uint8_t Clean
Definition: ir_Sharp.h:58
SharpProtocol::TimerType
uint8_t TimerType
Definition: ir_Sharp.h:64
kSharpAcSwingToggle
const uint8_t kSharpAcSwingToggle
Definition: ir_Sharp.h:124
IRSharpAc::setPowerSpecial
void setPowerSpecial(const uint8_t value)
Set the value of the Power Special setting without any checks.
Definition: ir_Sharp.cpp:347
kSharpAcFanAuto
const uint8_t kSharpAcFanAuto
Definition: ir_Sharp.h:110
SharpProtocol::Ion
uint8_t Ion
Definition: ir_Sharp.h:75
IRSharpAc::send
void send(const uint16_t repeat=kSharpAcDefaultRepeat)
Send the current internal state as an IR message.
Definition: ir_Sharp.cpp:253
IRSharpAc::_irsend
IRsend _irsend
Instance of the IR send class.
Definition: ir_Sharp.h:197
IRSharpAc::checksum
void checksum(void)
Calculate and set the checksum values for the internal state.
Definition: ir_Sharp.cpp:279
kSharpAcGap
const uint32_t kSharpAcGap
Definition: ir_Sharp.h:91
IRSharpAc::isPowerSpecial
bool isPowerSpecial(void) const
Is one of the special power states in use?
Definition: ir_Sharp.cpp:365
IRSharpAc::convertFan
static uint8_t convertFan(const stdAc::fanspeed_t speed, const sharp_ac_remote_model_t model=sharp_ac_remote_model_t::A907)
Convert a stdAc::fanspeed_t enum into it's native speed.
Definition: ir_Sharp.cpp:703
IRSharpAc::getRaw
uint8_t * getRaw(void)
Get a PTR to the internal state/code for this protocol.
Definition: ir_Sharp.cpp:297
IRSharpAc::_getEconoToggle
bool _getEconoToggle(void) const
Get the Economical mode toggle setting of the A/C.
Definition: ir_Sharp.cpp:577
IRSharpAc::getTemp
uint8_t getTemp(void) const
Get the current temperature setting.
Definition: ir_Sharp.cpp:452
kSharpAcPowerUnknown
const uint8_t kSharpAcPowerUnknown
Definition: ir_Sharp.h:97
IRrecv.h
kSharpAcPowerOn
const uint8_t kSharpAcPowerOn
Definition: ir_Sharp.h:100
IRSharpAc::getPowerSpecial
uint8_t getPowerSpecial(void) const
Get the value of the Power Special setting.
Definition: ir_Sharp.cpp:353
IRSharpAc::_setEconoToggle
void _setEconoToggle(const bool on)
Set the Economical mode toggle setting of the A/C.
Definition: ir_Sharp.cpp:586
IRSharpAc::setSpecial
void setSpecial(const uint8_t mode)
Set the value of the Special (button/command?) setting.
Definition: ir_Sharp.cpp:403
IRSharpAc::begin
void begin(void)
Set up hardware to be able to send a message.
Definition: ir_Sharp.cpp:248
kSharpAcStateLength
const uint16_t kSharpAcStateLength
Definition: IRremoteESP8266.h:1085
kSharpAcFanMax
const uint8_t kSharpAcFanMax
Definition: ir_Sharp.h:116
IRutils.h
IRSharpAc::_mode
uint8_t _mode
Saved copy of the desired mode.
Definition: ir_Sharp.h:205
SharpProtocol::PowerSpecial
uint8_t PowerSpecial
Definition: ir_Sharp.h:54
IRSharpAc
Class for handling detailed Sharp A/C messages.
Definition: ir_Sharp.h:137
SharpProtocol::Sum
uint8_t Sum
Definition: ir_Sharp.h:81
IRSharpAc::getClean
bool getClean(void) const
Get the Clean setting of the A/C.
Definition: ir_Sharp.cpp:665
SharpProtocol::TimerEnabled
uint8_t TimerEnabled
Definition: ir_Sharp.h:65
SharpProtocol::Swing
uint8_t Swing
Definition: ir_Sharp.h:67
SharpProtocol::Special
uint8_t Special
Definition: ir_Sharp.h:72
kSharpAcPowerTimerSetting
const uint8_t kSharpAcPowerTimerSetting
Definition: ir_Sharp.h:103
kSharpAcFanHigh
const uint8_t kSharpAcFanHigh
Definition: ir_Sharp.h:114
kSharpAcFanMin
const uint8_t kSharpAcFanMin
Definition: ir_Sharp.h:111
IRSharpAc::setClean
void setClean(const bool on)
Set the Economical mode toggle setting of the A/C.
Definition: ir_Sharp.cpp:672
IRSharpAc::toCommonMode
stdAc::opmode_t toCommonMode(const uint8_t mode) const
Convert a native mode into its stdAc equivalent.
Definition: ir_Sharp.cpp:730
IRSharpAc::getMode
uint8_t getMode(void) const
Get the operating mode setting of the A/C.
Definition: ir_Sharp.cpp:458
kSharpAcFan
const uint8_t kSharpAcFan
Definition: ir_Sharp.h:106
kSharpAcFanMed
const uint8_t kSharpAcFanMed
Definition: ir_Sharp.h:112
kSharpAcDefaultRepeat
const uint16_t kSharpAcDefaultRepeat
Definition: IRremoteESP8266.h:1087
IRSharpAc::getModel
sharp_ac_remote_model_t getModel(const bool raw=false) const
Get/Detect the model of the A/C.
Definition: ir_Sharp.cpp:331
IRSharpAc::getSpecial
uint8_t getSpecial(void) const
Get the value of the Special (button/command?) setting.
Definition: ir_Sharp.cpp:421
IRSharpAc::getTimerEnabled
bool getTimerEnabled(void) const
Is the Timer enabled?
Definition: ir_Sharp.cpp:631
IRSharpAc::getTimerType
bool getTimerType(void) const
Get the current timer type.
Definition: ir_Sharp.cpp:637
kSharpAcFanA705Med
const uint8_t kSharpAcFanA705Med
Definition: ir_Sharp.h:115
IRSharpAc::_fan
uint8_t _fan
Saved copy of the desired fan speed.
Definition: ir_Sharp.h:206
IRSharpAc::setEconoToggle
void setEconoToggle(const bool on)
Set the Economical mode toggle setting of the A/C.
Definition: ir_Sharp.cpp:595
SharpProtocol::Mode
uint8_t Mode
Definition: ir_Sharp.h:56
IRSharpAc::toCommon
stdAc::state_t toCommon(void) const
Convert the current internal state into its stdAc::state_t equivalent.
Definition: ir_Sharp.cpp:770
SharpProtocol::TimerHours
uint8_t TimerHours
Definition: ir_Sharp.h:62
IRSharpAc::getTimerTime
uint16_t getTimerTime(void) const
Get how long the timer is set for, in minutes.
Definition: ir_Sharp.cpp:623
kSharpAcHdrSpace
const uint16_t kSharpAcHdrSpace
Definition: ir_Sharp.h:87
kSharpAcAuto
const uint8_t kSharpAcAuto
Definition: ir_Sharp.h:105
IRSharpAc::_
SharpProtocol _
Definition: ir_Sharp.h:203
IRSharpAc::setLightToggle
void setLightToggle(const bool on)
Set the Light mode toggle setting of the A/C.
Definition: ir_Sharp.cpp:610
IRSharpAc::setSwingToggle
void setSwingToggle(const bool on)
Set the (vertical) Swing Toggle setting of the A/C.
Definition: ir_Sharp.cpp:555
SharpProtocol::Fan
uint8_t Fan
Definition: ir_Sharp.h:59
kSharpAcPowerSetSpecialOff
const uint8_t kSharpAcPowerSetSpecialOff
Definition: ir_Sharp.h:102
IRSharpAc::on
void on(void)
Set the requested power state of the A/C to on.
Definition: ir_Sharp.cpp:375
IRSharpAc::getSwingToggle
bool getSwingToggle(void) const
Get the (vertical) Swing Toggle setting of the A/C.
Definition: ir_Sharp.cpp:549
IRSharpAc::setMode
void setMode(const uint8_t mode, const bool save=true)
Set the operating mode of the A/C.
Definition: ir_Sharp.cpp:465
IRSharpAc::getPower
bool getPower(void) const
Get the value of the current power setting.
Definition: ir_Sharp.cpp:393
A907
@ A907
Definition: IRsend.h:157
kSharpAcBitMark
const uint16_t kSharpAcBitMark
Definition: ir_Sharp.h:88
SharpProtocol::raw
uint8_t raw[kSharpAcStateLength]
State of the remote in IR code form.
Definition: ir_Sharp.h:44
kSharpAcMinTemp
const uint8_t kSharpAcMinTemp
Definition: ir_Sharp.h:94
SharpProtocol::Temp
uint8_t Temp
Definition: ir_Sharp.h:49
kSharpAcSpecialTurbo
const uint8_t kSharpAcSpecialTurbo
Definition: ir_Sharp.h:128
IRSharpAc::stateReset
void stateReset(void)
Reset the state of the remote to a known good state/sequence.
Definition: ir_Sharp.cpp:284
kSharpAcByteTemp
const uint8_t kSharpAcByteTemp
Definition: ir_Sharp.h:93
IRSharpAc::setIon
void setIon(const bool on)
Set the Ion (Filter) setting of the A/C.
Definition: ir_Sharp.cpp:568
stdAc::state_t
Structure to hold a common A/C state.
Definition: IRsend.h:97
IRSharpAc::clearPowerSpecial
void clearPowerSpecial(void)
Clear the "special"/non-normal bits in the power section. e.g. for normal/common command modes.
Definition: ir_Sharp.cpp:359
kSharpAcHdrMark
const uint16_t kSharpAcHdrMark
Definition: ir_Sharp.h:86
IRSharpAc::setRaw
void setRaw(const uint8_t new_code[], const uint16_t length=kSharpAcStateLength)
Set the internal state from a valid code for this protocol.
Definition: ir_Sharp.cpp:305
kSharpAcSpecialPower
const uint8_t kSharpAcSpecialPower
Definition: ir_Sharp.h:127
SharpProtocol::pad
uint8_t pad[4]
Definition: ir_Sharp.h:47
sharp_ac_remote_model_t
sharp_ac_remote_model_t
Sharp A/C model numbers.
Definition: IRsend.h:156
IRSharpAc::toString
String toString(void) const
Convert the current internal state into a human readable string.
Definition: ir_Sharp.cpp:797
stdAc::opmode_t
opmode_t
Common A/C settings for A/C operating modes.
Definition: IRsend.h:46