ESPHome 2025.5.0
Loading...
Searching...
No Matches
midea_ir.h
Go to the documentation of this file.
1#pragma once
2
4#include "midea_data.h"
5
6namespace esphome {
7namespace midea_ir {
8
9// Temperature
10const uint8_t MIDEA_TEMPC_MIN = 17; // Celsius
11const uint8_t MIDEA_TEMPC_MAX = 30; // Celsius
12const uint8_t MIDEA_TEMPF_MIN = 62; // Fahrenheit
13const uint8_t MIDEA_TEMPF_MAX = 86; // Fahrenheit
14
16 public:
24
26 void control(const climate::ClimateCall &call) override;
27
29 void set_fahrenheit(bool value) {
30 this->fahrenheit_ = value;
31 this->temperature_step_ = value ? 0.5f : 1.0f;
32 }
33
34 protected:
36 void transmit_state() override;
37 void transmit_(MideaData &data);
40 bool on_midea_(const MideaData &data);
41 bool fahrenheit_{false};
42 bool swing_{false};
43 bool boost_{false};
44};
45
46} // namespace midea_ir
47} // 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
bool on_midea_(const MideaData &data)
Definition midea_ir.cpp:167
void transmit_state() override
Transmit via IR the state of this climate controller.
Definition midea_ir.cpp:137
void control(const climate::ClimateCall &call) override
Override control to change settings of the climate device.
Definition midea_ir.cpp:112
bool on_receive(remote_base::RemoteReceiveData data) override
Handle received IR Buffer.
Definition midea_ir.cpp:160
void set_fahrenheit(bool value)
Set use of Fahrenheit units.
Definition midea_ir.h:29
void transmit_(MideaData &data)
Definition midea_ir.cpp:130
@ 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_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 uint8_t MIDEA_TEMPC_MAX
Definition midea_ir.h:11
const uint8_t MIDEA_TEMPF_MAX
Definition midea_ir.h:13
const uint8_t MIDEA_TEMPC_MIN
Definition midea_ir.h:10
const uint8_t MIDEA_TEMPF_MIN
Definition midea_ir.h:12
Providing packet encoding functions for exchanging data with a remote host.
Definition a01nyub.cpp:7