ESPHome 2026.5.0-dev
Loading...
Searching...
No Matches
template_fan.cpp
Go to the documentation of this file.
1#include "template_fan.h"
2#include "esphome/core/log.h"
3
4namespace esphome::template_ {
5
6static const char *const TAG = "template.fan";
7
9 // Construct traits before restore so preset modes can be looked up by index
10 this->traits_ =
12
13 auto restore = this->restore_state_();
14 if (restore.has_value()) {
15 restore->apply(*this);
16 }
17}
18
19void TemplateFan::dump_config() { LOG_FAN("", "Template Fan", this); }
20
22 auto call_state = call.get_state();
23 if (call_state.has_value())
24 this->state = *call_state;
25 auto call_speed = call.get_speed();
26 if (call_speed.has_value() && (this->speed_count_ > 0))
27 this->speed = *call_speed;
28 auto call_oscillating = call.get_oscillating();
29 if (call_oscillating.has_value() && this->has_oscillating_)
30 this->oscillating = *call_oscillating;
31 auto call_direction = call.get_direction();
32 if (call_direction.has_value() && this->has_direction_)
33 this->direction = *call_direction;
34 this->apply_preset_mode_(call);
35
36 this->publish_state();
37}
38
39} // namespace esphome::template_
void publish_state()
Definition fan.cpp:224
void apply_preset_mode_(const FanCall &call)
Apply preset mode from a FanCall (handles speed-clears-preset convention)
Definition fan.cpp:215
FanDirection direction
The current direction of the fan.
Definition fan.h:117
bool oscillating
The current oscillation state of the fan.
Definition fan.h:113
bool state
The current on/off state of the fan.
Definition fan.h:111
int speed
The current fan speed level.
Definition fan.h:115
optional< FanRestoreState > restore_state_()
Definition fan.cpp:252
void control(const fan::FanCall &call) override
const char *const TAG
Definition spi.cpp:7