mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
8e75980ebd
* Cleanup dashboard JS * Add vscode * Save start_mark/end_mark * Updates * Updates * Remove need for cv.nameable It's a bit hacky but removes so much bloat from integrations * Add enum helper * Document APIs, and Improvements * Fixes * Fixes * Update PULL_REQUEST_TEMPLATE.md * Updates * Updates * Updates
57 lines
2 KiB
C++
57 lines
2 KiB
C++
#pragma once
|
|
|
|
#include "esphome/core/component.h"
|
|
#include "esphome/core/automation.h"
|
|
#include "esphome/components/binary_sensor/binary_sensor.h"
|
|
#include "esphome/components/cover/cover.h"
|
|
|
|
namespace esphome {
|
|
namespace endstop {
|
|
|
|
class EndstopCover : public cover::Cover, public Component {
|
|
public:
|
|
void setup() override;
|
|
void loop() override;
|
|
void dump_config() override;
|
|
float get_setup_priority() const override;
|
|
|
|
Trigger<> *get_open_trigger() const { return this->open_trigger_; }
|
|
Trigger<> *get_close_trigger() const { return this->close_trigger_; }
|
|
Trigger<> *get_stop_trigger() const { return this->stop_trigger_; }
|
|
void set_open_endstop(binary_sensor::BinarySensor *open_endstop) { this->open_endstop_ = open_endstop; }
|
|
void set_close_endstop(binary_sensor::BinarySensor *close_endstop) { this->close_endstop_ = close_endstop; }
|
|
void set_open_duration(uint32_t open_duration) { this->open_duration_ = open_duration; }
|
|
void set_close_duration(uint32_t close_duration) { this->close_duration_ = close_duration; }
|
|
void set_max_duration(uint32_t max_duration) { this->max_duration_ = max_duration; }
|
|
|
|
cover::CoverTraits get_traits() override;
|
|
|
|
protected:
|
|
void control(const cover::CoverCall &call) override;
|
|
void stop_prev_trigger_();
|
|
bool is_open_() const { return this->open_endstop_->state; }
|
|
bool is_closed_() const { return this->close_endstop_->state; }
|
|
bool is_at_target_() const;
|
|
|
|
void start_direction_(cover::CoverOperation dir);
|
|
|
|
void recompute_position_();
|
|
|
|
binary_sensor::BinarySensor *open_endstop_;
|
|
binary_sensor::BinarySensor *close_endstop_;
|
|
Trigger<> *open_trigger_{new Trigger<>()};
|
|
uint32_t open_duration_;
|
|
Trigger<> *close_trigger_{new Trigger<>()};
|
|
uint32_t close_duration_;
|
|
Trigger<> *stop_trigger_{new Trigger<>()};
|
|
uint32_t max_duration_{UINT32_MAX};
|
|
|
|
Trigger<> *prev_command_trigger_{nullptr};
|
|
uint32_t last_recompute_time_{0};
|
|
uint32_t start_dir_time_{0};
|
|
uint32_t last_publish_time_{0};
|
|
float target_position_{0};
|
|
};
|
|
|
|
} // namespace endstop
|
|
} // namespace esphome
|