iot-firmware/src/daikin_ir.hpp

64 lines
1.1 KiB
C++
Raw Normal View History

2023-08-27 19:07:04 +00:00
#ifndef DAIKIN_IR
#define DAIKIN_IR
#ifndef ESPMEGA
#include <ESPMegaPRO.h>
#endif
2023-08-28 17:49:11 +00:00
extern const uint16_t ir_code_cool[3][13][750] = {
// Fan Speed High
2023-08-27 19:07:04 +00:00
{
2023-08-28 17:49:11 +00:00
{0}, // 18C
{0}, // 19C
{0}, // 20C
{0}, // 21C
{0}, // 22C
{0}, // 23C
{0}, // 24C
{0}, // 25C
{0}, // 26C
{0}, // 27C
{0}, // 28C
{0}, // 29C
{0} // 30C
2023-08-27 19:07:04 +00:00
},
2023-08-28 17:49:11 +00:00
// Fan Speed Med
{
{0}, // 18C
{0}, // 19C
{0}, // 20C
{0}, // 21C
{0}, // 22C
{0}, // 23C
{0}, // 24C
{0}, // 25C
{0}, // 26C
{0}, // 27C
{0}, // 28C
{0}, // 29C
{0} // 30C
},
// Fan Speed Low
2023-08-27 19:07:04 +00:00
{
2023-08-28 17:49:11 +00:00
{0}, // 18C
{0}, // 19C
{0}, // 20C
{0}, // 21C
{0}, // 22C
{0}, // 23C
{0}, // 24C
{0}, // 25C
{0}, // 26C
{0}, // 27C
{0}, // 28C
{0}, // 29C
{0} // 30C
2023-08-27 19:07:04 +00:00
}};
2023-08-28 17:49:11 +00:00
extern const uint16_t ir_code_fan[3][750] = {
2023-08-27 19:07:04 +00:00
{0}, // LOW
{0}, // MED
{0} // HIGH
};
2023-08-28 17:49:11 +00:00
extern const uint16_t ir_code_off[750] = {0};
2023-08-27 19:07:04 +00:00
#endif