101 static const uint32_t AC1_HDR_MARK = 6100;
102 static const uint32_t AC1_HDR_SPACE = 7400;
103 static const uint32_t AC1_BIT_MARK = 500;
104 static const uint32_t AC1_ZERO_SPACE = 600;
105 static const uint32_t AC1_ONE_SPACE = 1800;
114 static const uint8_t AC1_POWER_OFF = 0x00;
115 static const uint8_t AC1_POWER_ON = 0x02;
118 static const uint8_t AC1_MODE_AUTO = 0x00;
119 static const uint8_t AC1_MODE_COOL = 0x20;
120 static const uint8_t AC1_MODE_DRY = 0x40;
121 static const uint8_t AC1_MODE_FAN = 0x60;
122 static const uint8_t AC1_MODE_HEAT = 0x80;
125 static const uint8_t AC1_FAN_AUTO = 0x00;
126 static const uint8_t AC1_FAN_SILENT = 0x01;
127 static const uint8_t AC1_FAN1 = 0x60;
128 static const uint8_t AC1_FAN2 = 0x40;
129 static const uint8_t AC1_FAN3 = 0x20;
130 static const uint8_t AC1_FAN_TURBO = 0x08;
133 static const uint8_t AC1_VDIR_WIND = 0x00;
134 static const uint8_t AC1_VDIR_SWING = 0x04;
135 static const uint8_t AC1_VDIR_FIXED = 0x08;
138 static const uint8_t AC1_HDIR_SWING = 0x00;
139 static const uint8_t AC1_HDIR_FIXED = 0x10;
142 static const float AC1_TEMP_MIN = 16.0f;
143 static const float AC1_TEMP_MAX = 32.0f;
144 static const float AC1_TEMP_INC = 1.0f;
150 AC1_TEMP_MIN, AC1_TEMP_MAX, AC1_TEMP_INC, true, true,
The fan mode is set to Low.
The fan mode is set to Both.
Device is prepared for sleep.
bool on_receive(remote_base::RemoteReceiveData data) override
Handle received IR Buffer.
The fan mode is set to Horizontal.
The fan mode is set to Auto.
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={})
The fan mode is set to Vertical.
The fan mode is set to High.
The swing mode is set to Off.
Device is in boost preset.
void transmit_state() override
Transmit via IR the state of this climate controller.
Implementation of SPI Controller mode.
The fan mode is set to Medium.