ESPHome 2025.12.0-dev
Loading...
Searching...
No Matches
pid_climate.cpp
Go to the documentation of this file.
1#include "pid_climate.h"
2#include "esphome/core/log.h"
3
4namespace esphome {
5namespace pid {
6
7static const char *const TAG = "pid.climate";
8
10 this->sensor_->add_on_state_callback([this](float state) {
11 // only publish if state/current temperature has changed in two digits of precision
12 this->do_publish_ = roundf(state * 100) != roundf(this->current_temperature * 100);
14 this->update_pid_();
15 });
16 this->current_temperature = this->sensor_->state;
17
18 // register for humidity values and get initial state
19 if (this->humidity_sensor_ != nullptr) {
20 this->humidity_sensor_->add_on_state_callback([this](float state) {
21 this->current_humidity = state;
22 this->publish_state();
23 });
25 }
26
27 // restore set points
28 auto restore = this->restore_state_();
29 if (restore.has_value()) {
30 restore->to_call(this).perform();
31 } else {
32 // restore from defaults, change_away handles those for us
33 if (supports_heat_() && supports_cool_()) {
35 } else if (supports_cool_()) {
37 } else if (supports_heat_()) {
39 }
41 }
42}
44 if (call.get_mode().has_value())
45 this->mode = *call.get_mode();
46 if (call.get_target_temperature().has_value())
48
49 // If switching to off mode, set output immediately
51 this->write_output_(0.0f);
52
53 this->publish_state();
54}
73 LOG_CLIMATE("", "PID Climate", this);
74 ESP_LOGCONFIG(TAG,
75 " Control Parameters:\n"
76 " kp: %.5f, ki: %.5f, kd: %.5f, output samples: %d",
77 controller_.kp_, controller_.ki_, controller_.kd_, controller_.output_samples_);
78
79 if (controller_.threshold_low_ == 0 && controller_.threshold_high_ == 0) {
80 ESP_LOGCONFIG(TAG, " Deadband disabled.");
81 } else {
82 ESP_LOGCONFIG(TAG,
83 " Deadband Parameters:\n"
84 " threshold: %0.5f to %0.5f, multipliers(kp: %.5f, ki: %.5f, kd: %.5f), "
85 "output samples: %d",
86 controller_.threshold_low_, controller_.threshold_high_, controller_.kp_multiplier_,
87 controller_.ki_multiplier_, controller_.kd_multiplier_, controller_.deadband_output_samples_);
88 }
89
90 if (this->autotuner_ != nullptr) {
91 this->autotuner_->dump_config();
92 }
93}
94void PIDClimate::write_output_(float value) {
95 this->output_value_ = value;
96
97 // first ensure outputs are off (both outputs not active at the same time)
98 if (this->supports_cool_() && value >= 0)
99 this->cool_output_->set_level(0.0f);
100 if (this->supports_heat_() && value <= 0)
101 this->heat_output_->set_level(0.0f);
102
103 // value < 0 means cool, > 0 means heat
104 if (this->supports_cool_() && value < 0)
105 this->cool_output_->set_level(std::min(1.0f, -value));
106 if (this->supports_heat_() && value > 0)
107 this->heat_output_->set_level(std::min(1.0f, value));
108
109 // Update action variable for user feedback what's happening
110 climate::ClimateAction new_action;
111 if (this->supports_cool_() && value < 0) {
113 } else if (this->supports_heat_() && value > 0) {
115 } else if (this->mode == climate::CLIMATE_MODE_OFF) {
116 new_action = climate::CLIMATE_ACTION_OFF;
117 } else {
118 new_action = climate::CLIMATE_ACTION_IDLE;
119 }
120
121 if (new_action != this->action) {
122 this->action = new_action;
123 this->do_publish_ = true;
124 }
125 this->pid_computed_callback_.call();
126}
128 float value;
129 if (std::isnan(this->current_temperature) || std::isnan(this->target_temperature)) {
130 // if any control parameters are nan, turn off all outputs
131 value = 0.0;
132 } else {
133 // Update PID controller irrespective of current mode, to not mess up D/I terms
134 // In non-auto mode, we just discard the output value
135 value = this->controller_.update(this->target_temperature, this->current_temperature);
136
137 // Check autotuner
138 if (this->autotuner_ != nullptr && !this->autotuner_->is_finished()) {
139 auto res = this->autotuner_->update(this->target_temperature, this->current_temperature);
140 if (res.result_params.has_value()) {
141 this->controller_.kp_ = res.result_params->kp;
142 this->controller_.ki_ = res.result_params->ki;
143 this->controller_.kd_ = res.result_params->kd;
144 // keep autotuner instance so that subsequent dump_configs will print the long result message.
145 } else {
146 value = res.output;
147 }
148 }
149 }
150
151 if (this->mode == climate::CLIMATE_MODE_OFF) {
152 this->write_output_(0.0);
153 } else {
154 this->write_output_(value);
155 }
156
157 if (this->do_publish_)
158 this->publish_state();
159}
160void PIDClimate::start_autotune(std::unique_ptr<PIDAutotuner> &&autotune) {
161 this->autotuner_ = std::move(autotune);
162 float min_value = this->supports_cool_() ? -1.0f : 0.0f;
163 float max_value = this->supports_heat_() ? 1.0f : 0.0f;
164 this->autotuner_->config(min_value, max_value);
165 this->autotuner_->set_autotuner_id(this->get_object_id());
166
167 ESP_LOGI(TAG,
168 "%s: Autotune has started. This can take a long time depending on the "
169 "responsiveness of your system. Your system "
170 "output will be altered to deliberately oscillate above and below the setpoint multiple times. "
171 "Until your sensor provides a reading, the autotuner may display \'nan\'",
172 this->get_object_id().c_str());
173
174 this->set_interval("autotune-progress", 10000, [this]() {
175 if (this->autotuner_ != nullptr && !this->autotuner_->is_finished())
176 this->autotuner_->dump_config();
177 });
178
180 ESP_LOGW(TAG, "%s: !!! For PID autotuner you need to set AUTO (also called heat/cool) mode!",
181 this->get_object_id().c_str());
182 }
183}
184
186
187} // namespace pid
188} // namespace esphome
void set_interval(const std::string &name, uint32_t interval, std::function< void()> &&f)
Set an interval function with a unique name.
Definition component.cpp:98
std::string get_object_id() const
This class is used to encode all control actions on a climate device.
Definition climate.h:33
const optional< float > & get_target_temperature() const
Definition climate.cpp:287
const optional< ClimateMode > & get_mode() const
Definition climate.cpp:292
ClimateMode mode
The active mode of the climate device.
Definition climate.h:256
float target_temperature
The target temperature of the climate device.
Definition climate.h:237
float current_humidity
The current humidity of the climate device, as reported from the integration.
Definition climate.h:233
float current_temperature
The current temperature of the climate device, as reported from the integration.
Definition climate.h:230
ClimateAction action
The active state of the climate device.
Definition climate.h:259
void publish_state()
Publish the state of the climate device, to be called from integrations.
Definition climate.cpp:426
optional< ClimateDeviceRestoreState > restore_state_()
Restore the state of the climate device, call this from your setup() method.
Definition climate.cpp:350
void add_feature_flags(uint32_t feature_flags)
void set_supported_modes(ClimateModeMask modes)
void add_supported_mode(ClimateMode mode)
void set_level(float state)
Set the level of this float output, this is called from the front-end.
void start_autotune(std::unique_ptr< PIDAutotuner > &&autotune)
PIDController controller_
Definition pid_climate.h:95
output::FloatOutput * cool_output_
Definition pid_climate.h:93
sensor::Sensor * sensor_
The sensor used for getting the current temperature.
Definition pid_climate.h:90
void dump_config() override
bool supports_cool_() const
Definition pid_climate.h:84
void write_output_(float value)
void setup() override
std::unique_ptr< PIDAutotuner > autotuner_
void control(const climate::ClimateCall &call) override
Override control to change settings of the climate device.
CallbackManager< void()> pid_computed_callback_
Definition pid_climate.h:98
float output_value_
Output value as reported by the PID controller, for PIDClimateSensor.
Definition pid_climate.h:97
sensor::Sensor * humidity_sensor_
The sensor used for getting the current humidity.
Definition pid_climate.h:92
climate::ClimateTraits traits() override
Return the traits of this controller.
bool supports_heat_() const
Definition pid_climate.h:85
output::FloatOutput * heat_output_
Definition pid_climate.h:94
void add_on_state_callback(std::function< void(float)> &&callback)
Add a callback that will be called every time a filtered value arrives.
Definition sensor.cpp:90
float state
This member variable stores the last state that has passed through all filters.
Definition sensor.h:116
bool state
Definition fan.h:0
@ CLIMATE_SUPPORTS_CURRENT_HUMIDITY
@ CLIMATE_SUPPORTS_CURRENT_TEMPERATURE
@ CLIMATE_MODE_HEAT
The climate device is set to heat to reach the target temperature.
@ CLIMATE_MODE_COOL
The climate device is set to cool to reach the target temperature.
@ CLIMATE_MODE_HEAT_COOL
The climate device is set to heat/cool to reach the target temperature.
@ CLIMATE_MODE_OFF
The climate device is off.
ClimateAction
Enum for the current action of the climate device. Values match those of ClimateMode.
@ CLIMATE_ACTION_OFF
The climate device is off (inactive or no power)
@ CLIMATE_ACTION_IDLE
The climate device is idle (monitoring climate but no action needed)
@ CLIMATE_ACTION_HEATING
The climate device is actively heating.
@ CLIMATE_ACTION_COOLING
The climate device is actively cooling.
Providing packet encoding functions for exchanging data with a remote host.
Definition a01nyub.cpp:7
float update(float setpoint, float process_value)