mirror of
https://github.com/esphome/esphome.git
synced 2024-11-27 17:27:59 +01:00
afc2b3b74f
* Keep Device Class in Flash. * Remove blank line --------- Co-authored-by: Your Name <you@example.com>
226 lines
6.8 KiB
C++
226 lines
6.8 KiB
C++
#include "cover.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome {
|
|
namespace cover {
|
|
|
|
static const char *const TAG = "cover";
|
|
|
|
const float COVER_OPEN = 1.0f;
|
|
const float COVER_CLOSED = 0.0f;
|
|
|
|
const char *cover_command_to_str(float pos) {
|
|
if (pos == COVER_OPEN) {
|
|
return "OPEN";
|
|
} else if (pos == COVER_CLOSED) {
|
|
return "CLOSE";
|
|
} else {
|
|
return "UNKNOWN";
|
|
}
|
|
}
|
|
const char *cover_operation_to_str(CoverOperation op) {
|
|
switch (op) {
|
|
case COVER_OPERATION_IDLE:
|
|
return "IDLE";
|
|
case COVER_OPERATION_OPENING:
|
|
return "OPENING";
|
|
case COVER_OPERATION_CLOSING:
|
|
return "CLOSING";
|
|
default:
|
|
return "UNKNOWN";
|
|
}
|
|
}
|
|
|
|
Cover::Cover() : position{COVER_OPEN} {}
|
|
|
|
CoverCall::CoverCall(Cover *parent) : parent_(parent) {}
|
|
CoverCall &CoverCall::set_command(const char *command) {
|
|
if (strcasecmp(command, "OPEN") == 0) {
|
|
this->set_command_open();
|
|
} else if (strcasecmp(command, "CLOSE") == 0) {
|
|
this->set_command_close();
|
|
} else if (strcasecmp(command, "STOP") == 0) {
|
|
this->set_command_stop();
|
|
} else if (strcasecmp(command, "TOGGLE") == 0) {
|
|
this->set_command_toggle();
|
|
} else {
|
|
ESP_LOGW(TAG, "'%s' - Unrecognized command %s", this->parent_->get_name().c_str(), command);
|
|
}
|
|
return *this;
|
|
}
|
|
CoverCall &CoverCall::set_command_open() {
|
|
this->position_ = COVER_OPEN;
|
|
return *this;
|
|
}
|
|
CoverCall &CoverCall::set_command_close() {
|
|
this->position_ = COVER_CLOSED;
|
|
return *this;
|
|
}
|
|
CoverCall &CoverCall::set_command_stop() {
|
|
this->stop_ = true;
|
|
return *this;
|
|
}
|
|
CoverCall &CoverCall::set_command_toggle() {
|
|
this->toggle_ = true;
|
|
return *this;
|
|
}
|
|
CoverCall &CoverCall::set_position(float position) {
|
|
this->position_ = position;
|
|
return *this;
|
|
}
|
|
CoverCall &CoverCall::set_tilt(float tilt) {
|
|
this->tilt_ = tilt;
|
|
return *this;
|
|
}
|
|
void CoverCall::perform() {
|
|
ESP_LOGD(TAG, "'%s' - Setting", this->parent_->get_name().c_str());
|
|
auto traits = this->parent_->get_traits();
|
|
this->validate_();
|
|
if (this->stop_) {
|
|
ESP_LOGD(TAG, " Command: STOP");
|
|
}
|
|
if (this->position_.has_value()) {
|
|
if (traits.get_supports_position()) {
|
|
ESP_LOGD(TAG, " Position: %.0f%%", *this->position_ * 100.0f);
|
|
} else {
|
|
ESP_LOGD(TAG, " Command: %s", cover_command_to_str(*this->position_));
|
|
}
|
|
}
|
|
if (this->tilt_.has_value()) {
|
|
ESP_LOGD(TAG, " Tilt: %.0f%%", *this->tilt_ * 100.0f);
|
|
}
|
|
if (this->toggle_.has_value()) {
|
|
ESP_LOGD(TAG, " Command: TOGGLE");
|
|
}
|
|
this->parent_->control(*this);
|
|
}
|
|
const optional<float> &CoverCall::get_position() const { return this->position_; }
|
|
const optional<float> &CoverCall::get_tilt() const { return this->tilt_; }
|
|
const optional<bool> &CoverCall::get_toggle() const { return this->toggle_; }
|
|
void CoverCall::validate_() {
|
|
auto traits = this->parent_->get_traits();
|
|
if (this->position_.has_value()) {
|
|
auto pos = *this->position_;
|
|
if (!traits.get_supports_position() && pos != COVER_OPEN && pos != COVER_CLOSED) {
|
|
ESP_LOGW(TAG, "'%s' - This cover device does not support setting position!", this->parent_->get_name().c_str());
|
|
this->position_.reset();
|
|
} else if (pos < 0.0f || pos > 1.0f) {
|
|
ESP_LOGW(TAG, "'%s' - Position %.2f is out of range [0.0 - 1.0]", this->parent_->get_name().c_str(), pos);
|
|
this->position_ = clamp(pos, 0.0f, 1.0f);
|
|
}
|
|
}
|
|
if (this->tilt_.has_value()) {
|
|
auto tilt = *this->tilt_;
|
|
if (!traits.get_supports_tilt()) {
|
|
ESP_LOGW(TAG, "'%s' - This cover device does not support tilt!", this->parent_->get_name().c_str());
|
|
this->tilt_.reset();
|
|
} else if (tilt < 0.0f || tilt > 1.0f) {
|
|
ESP_LOGW(TAG, "'%s' - Tilt %.2f is out of range [0.0 - 1.0]", this->parent_->get_name().c_str(), tilt);
|
|
this->tilt_ = clamp(tilt, 0.0f, 1.0f);
|
|
}
|
|
}
|
|
if (this->toggle_.has_value()) {
|
|
if (!traits.get_supports_toggle()) {
|
|
ESP_LOGW(TAG, "'%s' - This cover device does not support toggle!", this->parent_->get_name().c_str());
|
|
this->toggle_.reset();
|
|
}
|
|
}
|
|
if (this->stop_) {
|
|
if (this->position_.has_value()) {
|
|
ESP_LOGW(TAG, "Cannot set position when stopping a cover!");
|
|
this->position_.reset();
|
|
}
|
|
if (this->tilt_.has_value()) {
|
|
ESP_LOGW(TAG, "Cannot set tilt when stopping a cover!");
|
|
this->tilt_.reset();
|
|
}
|
|
if (this->toggle_.has_value()) {
|
|
ESP_LOGW(TAG, "Cannot set toggle when stopping a cover!");
|
|
this->toggle_.reset();
|
|
}
|
|
}
|
|
}
|
|
CoverCall &CoverCall::set_stop(bool stop) {
|
|
this->stop_ = stop;
|
|
return *this;
|
|
}
|
|
bool CoverCall::get_stop() const { return this->stop_; }
|
|
|
|
CoverCall Cover::make_call() { return {this}; }
|
|
void Cover::open() {
|
|
auto call = this->make_call();
|
|
call.set_command_open();
|
|
call.perform();
|
|
}
|
|
void Cover::close() {
|
|
auto call = this->make_call();
|
|
call.set_command_close();
|
|
call.perform();
|
|
}
|
|
void Cover::stop() {
|
|
auto call = this->make_call();
|
|
call.set_command_stop();
|
|
call.perform();
|
|
}
|
|
void Cover::add_on_state_callback(std::function<void()> &&f) { this->state_callback_.add(std::move(f)); }
|
|
void Cover::publish_state(bool save) {
|
|
this->position = clamp(this->position, 0.0f, 1.0f);
|
|
this->tilt = clamp(this->tilt, 0.0f, 1.0f);
|
|
|
|
ESP_LOGD(TAG, "'%s' - Publishing:", this->name_.c_str());
|
|
auto traits = this->get_traits();
|
|
if (traits.get_supports_position()) {
|
|
ESP_LOGD(TAG, " Position: %.0f%%", this->position * 100.0f);
|
|
} else {
|
|
if (this->position == COVER_OPEN) {
|
|
ESP_LOGD(TAG, " State: OPEN");
|
|
} else if (this->position == COVER_CLOSED) {
|
|
ESP_LOGD(TAG, " State: CLOSED");
|
|
} else {
|
|
ESP_LOGD(TAG, " State: UNKNOWN");
|
|
}
|
|
}
|
|
if (traits.get_supports_tilt()) {
|
|
ESP_LOGD(TAG, " Tilt: %.0f%%", this->tilt * 100.0f);
|
|
}
|
|
ESP_LOGD(TAG, " Current Operation: %s", cover_operation_to_str(this->current_operation));
|
|
|
|
this->state_callback_.call();
|
|
|
|
if (save) {
|
|
CoverRestoreState restore{};
|
|
memset(&restore, 0, sizeof(restore));
|
|
restore.position = this->position;
|
|
if (traits.get_supports_tilt()) {
|
|
restore.tilt = this->tilt;
|
|
}
|
|
this->rtc_.save(&restore);
|
|
}
|
|
}
|
|
optional<CoverRestoreState> Cover::restore_state_() {
|
|
this->rtc_ = global_preferences->make_preference<CoverRestoreState>(this->get_object_id_hash());
|
|
CoverRestoreState recovered{};
|
|
if (!this->rtc_.load(&recovered))
|
|
return {};
|
|
return recovered;
|
|
}
|
|
|
|
bool Cover::is_fully_open() const { return this->position == COVER_OPEN; }
|
|
bool Cover::is_fully_closed() const { return this->position == COVER_CLOSED; }
|
|
|
|
CoverCall CoverRestoreState::to_call(Cover *cover) {
|
|
auto call = cover->make_call();
|
|
auto traits = cover->get_traits();
|
|
call.set_position(this->position);
|
|
if (traits.get_supports_tilt())
|
|
call.set_tilt(this->tilt);
|
|
return call;
|
|
}
|
|
void CoverRestoreState::apply(Cover *cover) {
|
|
cover->position = this->position;
|
|
cover->tilt = this->tilt;
|
|
cover->publish_state();
|
|
}
|
|
|
|
} // namespace cover
|
|
} // namespace esphome
|