25 lines
456 B
C++
25 lines
456 B
C++
#ifndef DAIKIN_IR
|
|
#define DAIKIN_IR
|
|
#ifndef ESPMEGA
|
|
#include <ESPMegaPRO.h>
|
|
#endif
|
|
|
|
extern const uint16_t daikin_ir_code_cool[3][10][750] = {
|
|
// Fan Speed Low
|
|
{
|
|
{0}, // 16C
|
|
{0} // 17C
|
|
},
|
|
// Fan Speed MED
|
|
{
|
|
{0}, // 16C
|
|
{0} // 17C
|
|
}};
|
|
|
|
extern const uint16_t daikin_ir_code_fan[3][750] = {
|
|
{0}, // LOW
|
|
{0}, // MED
|
|
{0} // HIGH
|
|
};
|
|
extern const uint16_t daikin_ir_code_off[750] = {0};
|
|
#endif |