iot-firmware/src/ir_codes.hpp

59 lines
1.1 KiB
C++
Raw Normal View History

2023-09-29 17:06:49 +00:00
#pragma once
2023-08-27 19:07:04 +00:00
#include <ESPMegaPRO.h>
2023-11-05 06:11:31 +00:00
extern const uint8_t ir_code_cool[3][16][750] = {
2023-08-28 17:49:11 +00:00
// 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-11-05 06:11:31 +00:00
extern const uint8_t ir_code_fan[3][750] = {
2023-08-27 19:07:04 +00:00
{0}, // LOW
{0}, // MED
{0} // HIGH
};
2023-11-05 06:11:35 +00:00
extern const uint8_t ir_code_off[750] = {0};