ESPHome 2026.6.0-dev
Loading...
Searching...
No Matches
ballu.h
Go to the documentation of this file.
1#pragma once
2
4
5namespace esphome::ballu {
6
7// Support for Ballu air conditioners with YKR-K/002E remote
8
9// Temperature
10const float YKR_K_002E_TEMP_MIN = 16.0;
11const float YKR_K_002E_TEMP_MAX = 32.0;
12
28
29} // namespace esphome::ballu
void transmit_state() override
Transmit via IR the state of this climate controller.
Definition ballu.cpp:33
bool on_receive(remote_base::RemoteReceiveData data) override
Handle received IR Buffer.
Definition ballu.cpp:120
ClimateIR(float minimum_temperature, float maximum_temperature, float temperature_step=1.0f, bool supports_dry=false, bool supports_fan_only=false, climate::ClimateFanModeMask fan_modes=climate::ClimateFanModeMask(), climate::ClimateSwingModeMask swing_modes=climate::ClimateSwingModeMask(), climate::ClimatePresetMask presets=climate::ClimatePresetMask())
Definition climate_ir.h:25
const float YKR_K_002E_TEMP_MIN
Definition ballu.h:10
const float YKR_K_002E_TEMP_MAX
Definition ballu.h:11
@ 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.