ESPHome  2024.9.0
template_fan.cpp
Go to the documentation of this file.
1 #include "template_fan.h"
2 #include "esphome/core/log.h"
3 
4 namespace esphome {
5 namespace template_ {
6 
7 static const char *const TAG = "template.fan";
8 
10  auto restore = this->restore_state_();
11  if (restore.has_value()) {
12  restore->apply(*this);
13  }
14 
15  // Construct traits
16  this->traits_ =
19 }
20 
21 void TemplateFan::dump_config() { LOG_FAN("", "Template Fan", this); }
22 
24  if (call.get_state().has_value())
25  this->state = *call.get_state();
26  if (call.get_speed().has_value() && (this->speed_count_ > 0))
27  this->speed = *call.get_speed();
28  if (call.get_oscillating().has_value() && this->has_oscillating_)
29  this->oscillating = *call.get_oscillating();
30  if (call.get_direction().has_value() && this->has_direction_)
31  this->direction = *call.get_direction();
32  this->preset_mode = call.get_preset_mode();
33 
34  this->publish_state();
35 }
36 
37 } // namespace template_
38 } // namespace esphome
bool state
The current on/off state of the fan.
Definition: fan.h:110
bool oscillating
The current oscillation state of the fan.
Definition: fan.h:112
std::set< std::string > preset_modes_
Definition: template_fan.h:29
FanDirection direction
The current direction of the fan.
Definition: fan.h:116
optional< FanDirection > get_direction() const
Definition: fan.h:74
void publish_state()
Definition: fan.cpp:117
optional< int > get_speed() const
Definition: fan.h:65
optional< FanRestoreState > restore_state_()
Definition: fan.cpp:140
bool has_value() const
Definition: optional.h:87
const char *const TAG
Definition: spi.cpp:8
std::string preset_mode
Definition: fan.h:118
int speed
The current fan speed level.
Definition: fan.h:114
optional< bool > get_state() const
Definition: fan.h:49
optional< bool > get_oscillating() const
Definition: fan.h:58
void set_supported_preset_modes(const std::set< std::string > &preset_modes)
Set the preset modes supported by the fan.
Definition: fan_traits.h:34
Implementation of SPI Controller mode.
Definition: a01nyub.cpp:7
void control(const fan::FanCall &call) override
std::string get_preset_mode() const
Definition: fan.h:79