ESPHome 2025.5.0
Loading...
Searching...
No Matches
tcl112.h
Go to the documentation of this file.
1#pragma once
2
4
5namespace esphome {
6namespace tcl112 {
7
8// Temperature
9const float TCL112_TEMP_MAX = 31.0;
10const float TCL112_TEMP_MIN = 16.0;
11
13 public:
19
20 protected:
22 void transmit_state() override;
24 bool on_receive(remote_base::RemoteReceiveData data) override;
25};
26
27} // namespace tcl112
28} // namespace esphome
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
void transmit_state() override
Transmit via IR the state of this climate controller.
Definition tcl112.cpp:35
bool on_receive(remote_base::RemoteReceiveData data) override
Handle received IR Buffer.
Definition tcl112.cpp:146
@ CLIMATE_SWING_OFF
The swing mode is set to Off.
@ CLIMATE_SWING_VERTICAL
The fan mode is set to Vertical.
@ 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.
const float TCL112_TEMP_MAX
Definition tcl112.h:9
const float TCL112_TEMP_MIN
Definition tcl112.h:10
Providing packet encoding functions for exchanging data with a remote host.
Definition a01nyub.cpp:7