mirror of
https://github.com/esphome/esphome.git
synced 2025-10-28 21:53:48 +00:00
Merge branch 'integration' into memory_api
This commit is contained in:
@@ -425,7 +425,7 @@ message ListEntitiesFanResponse {
|
|||||||
bool disabled_by_default = 9;
|
bool disabled_by_default = 9;
|
||||||
string icon = 10 [(field_ifdef) = "USE_ENTITY_ICON"];
|
string icon = 10 [(field_ifdef) = "USE_ENTITY_ICON"];
|
||||||
EntityCategory entity_category = 11;
|
EntityCategory entity_category = 11;
|
||||||
repeated string supported_preset_modes = 12 [(container_pointer) = "std::set"];
|
repeated string supported_preset_modes = 12 [(container_pointer) = "std::vector"];
|
||||||
uint32 device_id = 13 [(field_ifdef) = "USE_DEVICES"];
|
uint32 device_id = 13 [(field_ifdef) = "USE_DEVICES"];
|
||||||
}
|
}
|
||||||
// Deprecated in API version 1.6 - only used in deprecated fields
|
// Deprecated in API version 1.6 - only used in deprecated fields
|
||||||
|
|||||||
@@ -725,7 +725,7 @@ class ListEntitiesFanResponse final : public InfoResponseProtoMessage {
|
|||||||
bool supports_speed{false};
|
bool supports_speed{false};
|
||||||
bool supports_direction{false};
|
bool supports_direction{false};
|
||||||
int32_t supported_speed_count{0};
|
int32_t supported_speed_count{0};
|
||||||
const std::set<std::string> *supported_preset_modes{};
|
const std::vector<std::string> *supported_preset_modes{};
|
||||||
void encode(ProtoWriteBuffer buffer) const override;
|
void encode(ProtoWriteBuffer buffer) const override;
|
||||||
void calculate_size(ProtoSize &size) const override;
|
void calculate_size(ProtoSize &size) const override;
|
||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
|
#ifdef HAS_PROTO_MESSAGE_DUMP
|
||||||
|
|||||||
@@ -51,7 +51,14 @@ void FanCall::validate_() {
|
|||||||
|
|
||||||
if (!this->preset_mode_.empty()) {
|
if (!this->preset_mode_.empty()) {
|
||||||
const auto &preset_modes = traits.supported_preset_modes();
|
const auto &preset_modes = traits.supported_preset_modes();
|
||||||
if (preset_modes.find(this->preset_mode_) == preset_modes.end()) {
|
bool found = false;
|
||||||
|
for (const auto &mode : preset_modes) {
|
||||||
|
if (mode == this->preset_mode_) {
|
||||||
|
found = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!found) {
|
||||||
ESP_LOGW(TAG, "%s: Preset mode '%s' not supported", this->parent_.get_name().c_str(), this->preset_mode_.c_str());
|
ESP_LOGW(TAG, "%s: Preset mode '%s' not supported", this->parent_.get_name().c_str(), this->preset_mode_.c_str());
|
||||||
this->preset_mode_.clear();
|
this->preset_mode_.clear();
|
||||||
}
|
}
|
||||||
@@ -191,9 +198,14 @@ void Fan::save_state_() {
|
|||||||
if (this->get_traits().supports_preset_modes() && !this->preset_mode.empty()) {
|
if (this->get_traits().supports_preset_modes() && !this->preset_mode.empty()) {
|
||||||
const auto &preset_modes = this->get_traits().supported_preset_modes();
|
const auto &preset_modes = this->get_traits().supported_preset_modes();
|
||||||
// Store index of current preset mode
|
// Store index of current preset mode
|
||||||
auto preset_iterator = preset_modes.find(this->preset_mode);
|
size_t i = 0;
|
||||||
if (preset_iterator != preset_modes.end())
|
for (const auto &mode : preset_modes) {
|
||||||
state.preset_mode = std::distance(preset_modes.begin(), preset_iterator);
|
if (mode == this->preset_mode) {
|
||||||
|
state.preset_mode = i;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
i++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this->rtc_.save(&state);
|
this->rtc_.save(&state);
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
#include <set>
|
|
||||||
#include <utility>
|
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
namespace esphome {
|
namespace esphome {
|
||||||
|
|
||||||
#ifdef USE_API
|
#ifdef USE_API
|
||||||
@@ -36,9 +35,9 @@ class FanTraits {
|
|||||||
/// Set whether this fan supports changing direction
|
/// Set whether this fan supports changing direction
|
||||||
void set_direction(bool direction) { this->direction_ = direction; }
|
void set_direction(bool direction) { this->direction_ = direction; }
|
||||||
/// Return the preset modes supported by the fan.
|
/// Return the preset modes supported by the fan.
|
||||||
std::set<std::string> supported_preset_modes() const { return this->preset_modes_; }
|
const std::vector<std::string> &supported_preset_modes() const { return this->preset_modes_; }
|
||||||
/// Set the preset modes supported by the fan.
|
/// Set the preset modes supported by the fan.
|
||||||
void set_supported_preset_modes(const std::set<std::string> &preset_modes) { this->preset_modes_ = preset_modes; }
|
void set_supported_preset_modes(const std::vector<std::string> &preset_modes) { this->preset_modes_ = preset_modes; }
|
||||||
/// Return if preset modes are supported
|
/// Return if preset modes are supported
|
||||||
bool supports_preset_modes() const { return !this->preset_modes_.empty(); }
|
bool supports_preset_modes() const { return !this->preset_modes_.empty(); }
|
||||||
|
|
||||||
@@ -46,17 +45,17 @@ class FanTraits {
|
|||||||
#ifdef USE_API
|
#ifdef USE_API
|
||||||
// The API connection is a friend class to access internal methods
|
// The API connection is a friend class to access internal methods
|
||||||
friend class api::APIConnection;
|
friend class api::APIConnection;
|
||||||
// This method returns a reference to the internal preset modes set.
|
// This method returns a reference to the internal preset modes.
|
||||||
// It is used by the API to avoid copying data when encoding messages.
|
// It is used by the API to avoid copying data when encoding messages.
|
||||||
// Warning: Do not use this method outside of the API connection code.
|
// Warning: Do not use this method outside of the API connection code.
|
||||||
// It returns a reference to internal data that can be invalidated.
|
// It returns a reference to internal data that can be invalidated.
|
||||||
const std::set<std::string> &supported_preset_modes_for_api_() const { return this->preset_modes_; }
|
const std::vector<std::string> &supported_preset_modes_for_api_() const { return this->preset_modes_; }
|
||||||
#endif
|
#endif
|
||||||
bool oscillation_{false};
|
bool oscillation_{false};
|
||||||
bool speed_{false};
|
bool speed_{false};
|
||||||
bool direction_{false};
|
bool direction_{false};
|
||||||
int speed_count_{};
|
int speed_count_{};
|
||||||
std::set<std::string> preset_modes_{};
|
std::vector<std::string> preset_modes_{};
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace fan
|
} // namespace fan
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ class HBridgeFan : public Component, public fan::Fan {
|
|||||||
void set_pin_a(output::FloatOutput *pin_a) { pin_a_ = pin_a; }
|
void set_pin_a(output::FloatOutput *pin_a) { pin_a_ = pin_a; }
|
||||||
void set_pin_b(output::FloatOutput *pin_b) { pin_b_ = pin_b; }
|
void set_pin_b(output::FloatOutput *pin_b) { pin_b_ = pin_b; }
|
||||||
void set_enable_pin(output::FloatOutput *enable) { enable_ = enable; }
|
void set_enable_pin(output::FloatOutput *enable) { enable_ = enable; }
|
||||||
void set_preset_modes(const std::set<std::string> &presets) { preset_modes_ = presets; }
|
void set_preset_modes(const std::vector<std::string> &presets) { preset_modes_ = presets; }
|
||||||
|
|
||||||
void setup() override;
|
void setup() override;
|
||||||
void dump_config() override;
|
void dump_config() override;
|
||||||
@@ -38,7 +38,7 @@ class HBridgeFan : public Component, public fan::Fan {
|
|||||||
int speed_count_{};
|
int speed_count_{};
|
||||||
DecayMode decay_mode_{DECAY_MODE_SLOW};
|
DecayMode decay_mode_{DECAY_MODE_SLOW};
|
||||||
fan::FanTraits traits_;
|
fan::FanTraits traits_;
|
||||||
std::set<std::string> preset_modes_{};
|
std::vector<std::string> preset_modes_{};
|
||||||
|
|
||||||
void control(const fan::FanCall &call) override;
|
void control(const fan::FanCall &call) override;
|
||||||
void write_state_();
|
void write_state_();
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ class SpeedFan : public Component, public fan::Fan {
|
|||||||
void set_output(output::FloatOutput *output) { this->output_ = output; }
|
void set_output(output::FloatOutput *output) { this->output_ = output; }
|
||||||
void set_oscillating(output::BinaryOutput *oscillating) { this->oscillating_ = oscillating; }
|
void set_oscillating(output::BinaryOutput *oscillating) { this->oscillating_ = oscillating; }
|
||||||
void set_direction(output::BinaryOutput *direction) { this->direction_ = direction; }
|
void set_direction(output::BinaryOutput *direction) { this->direction_ = direction; }
|
||||||
void set_preset_modes(const std::set<std::string> &presets) { this->preset_modes_ = presets; }
|
void set_preset_modes(const std::vector<std::string> &presets) { this->preset_modes_ = presets; }
|
||||||
fan::FanTraits get_traits() override { return this->traits_; }
|
fan::FanTraits get_traits() override { return this->traits_; }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
@@ -30,7 +30,7 @@ class SpeedFan : public Component, public fan::Fan {
|
|||||||
output::BinaryOutput *direction_{nullptr};
|
output::BinaryOutput *direction_{nullptr};
|
||||||
int speed_count_{};
|
int speed_count_{};
|
||||||
fan::FanTraits traits_;
|
fan::FanTraits traits_;
|
||||||
std::set<std::string> preset_modes_{};
|
std::vector<std::string> preset_modes_{};
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace speed
|
} // namespace speed
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <set>
|
#include <vector>
|
||||||
|
|
||||||
#include "esphome/core/component.h"
|
#include "esphome/core/component.h"
|
||||||
#include "esphome/components/fan/fan.h"
|
#include "esphome/components/fan/fan.h"
|
||||||
@@ -16,7 +16,7 @@ class TemplateFan : public Component, public fan::Fan {
|
|||||||
void set_has_direction(bool has_direction) { this->has_direction_ = has_direction; }
|
void set_has_direction(bool has_direction) { this->has_direction_ = has_direction; }
|
||||||
void set_has_oscillating(bool has_oscillating) { this->has_oscillating_ = has_oscillating; }
|
void set_has_oscillating(bool has_oscillating) { this->has_oscillating_ = has_oscillating; }
|
||||||
void set_speed_count(int count) { this->speed_count_ = count; }
|
void set_speed_count(int count) { this->speed_count_ = count; }
|
||||||
void set_preset_modes(const std::set<std::string> &presets) { this->preset_modes_ = presets; }
|
void set_preset_modes(const std::initializer_list<std::string> &presets) { this->preset_modes_ = presets; }
|
||||||
fan::FanTraits get_traits() override { return this->traits_; }
|
fan::FanTraits get_traits() override { return this->traits_; }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
@@ -26,7 +26,7 @@ class TemplateFan : public Component, public fan::Fan {
|
|||||||
bool has_direction_{false};
|
bool has_direction_{false};
|
||||||
int speed_count_{0};
|
int speed_count_{0};
|
||||||
fan::FanTraits traits_;
|
fan::FanTraits traits_;
|
||||||
std::set<std::string> preset_modes_{};
|
std::vector<std::string> preset_modes_{};
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace template_
|
} // namespace template_
|
||||||
|
|||||||
Reference in New Issue
Block a user