ESPHome 2025.5.0
Loading...
Searching...
No Matches
ballu.h
Go to the documentation of this file.
1#pragma once
2
4
5namespace esphome {
6namespace ballu {
7
8// Support for Ballu air conditioners with YKR-K/002E remote
9
10// Temperature
11const float YKR_K_002E_TEMP_MIN = 16.0;
12const float YKR_K_002E_TEMP_MAX = 32.0;
13
29
30} // namespace ballu
31} // namespace esphome
void transmit_state() override
Transmit via IR the state of this climate controller.
Definition ballu.cpp:34
bool on_receive(remote_base::RemoteReceiveData data) override
Handle received IR Buffer.
Definition ballu.cpp:121
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={})
Definition climate_ir.h:26
const float YKR_K_002E_TEMP_MIN
Definition ballu.h:11
const float YKR_K_002E_TEMP_MAX
Definition ballu.h:12
@ 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.
Definition a01nyub.cpp:7