101static const uint32_t AC1_HDR_MARK = 6100;
102static const uint32_t AC1_HDR_SPACE = 7400;
103static const uint32_t AC1_BIT_MARK = 500;
104static const uint32_t AC1_ZERO_SPACE = 600;
105static const uint32_t AC1_ONE_SPACE = 1800;
114static const uint8_t AC1_POWER_OFF = 0x00;
115static const uint8_t AC1_POWER_ON = 0x02;
118static const uint8_t AC1_MODE_AUTO = 0x00;
119static const uint8_t AC1_MODE_COOL = 0x20;
120static const uint8_t AC1_MODE_DRY = 0x40;
121static const uint8_t AC1_MODE_FAN = 0x60;
122static const uint8_t AC1_MODE_HEAT = 0x80;
125static const uint8_t AC1_FAN_AUTO = 0x00;
126static const uint8_t AC1_FAN_SILENT = 0x01;
127static const uint8_t AC1_FAN1 = 0x60;
128static const uint8_t AC1_FAN2 = 0x40;
129static const uint8_t AC1_FAN3 = 0x20;
130static const uint8_t AC1_FAN_TURBO = 0x08;
133static const uint8_t AC1_VDIR_WIND = 0x00;
134static const uint8_t AC1_VDIR_SWING = 0x04;
135static const uint8_t AC1_VDIR_FIXED = 0x08;
138static const uint8_t AC1_HDIR_SWING = 0x00;
139static const uint8_t AC1_HDIR_FIXED = 0x10;
142static const float AC1_TEMP_MIN = 16.0f;
143static const float AC1_TEMP_MAX = 32.0f;
144static const float AC1_TEMP_INC = 1.0f;
150 AC1_TEMP_MIN, AC1_TEMP_MAX, AC1_TEMP_INC, true, true,
ClimateIR(float minimum_temperature, float maximum_temperature, float temperature_step=1.0f, bool supports_dry=false, bool supports_fan_only=false, std::set< climate::ClimateFanMode > fan_modes={}, std::set< climate::ClimateSwingMode > swing_modes={}, std::set< climate::ClimatePreset > presets={})
bool on_receive(remote_base::RemoteReceiveData data) override
Handle received IR Buffer.
void transmit_state() override
Transmit via IR the state of this climate controller.
@ CLIMATE_PRESET_NONE
No preset is active.
@ CLIMATE_PRESET_BOOST
Device is in boost preset.
@ CLIMATE_PRESET_SLEEP
Device is prepared for sleep.
@ CLIMATE_SWING_OFF
The swing mode is set to Off.
@ CLIMATE_SWING_HORIZONTAL
The fan mode is set to Horizontal.
@ CLIMATE_SWING_VERTICAL
The fan mode is set to Vertical.
@ CLIMATE_SWING_BOTH
The fan mode is set to Both.
@ CLIMATE_FAN_MEDIUM
The fan mode is set to Medium.
@ CLIMATE_FAN_AUTO
The fan mode is set to Auto.
@ CLIMATE_FAN_LOW
The fan mode is set to Low.
@ CLIMATE_FAN_HIGH
The fan mode is set to High.
Providing packet encoding functions for exchanging data with a remote host.