mirror of
https://github.com/esphome/esphome.git
synced 2025-02-08 14:10:54 +00:00
76991cdcc4
Co-authored-by: Otto Winter <otto@otto-winter.com>
34 lines
778 B
C++
34 lines
778 B
C++
#pragma once
|
|
|
|
#include "esphome/core/automation.h"
|
|
#include "esphome/core/component.h"
|
|
#include "select.h"
|
|
|
|
namespace esphome {
|
|
namespace select {
|
|
|
|
class SelectStateTrigger : public Trigger<std::string> {
|
|
public:
|
|
explicit SelectStateTrigger(Select *parent) {
|
|
parent->add_on_state_callback([this](std::string value) { this->trigger(std::move(value)); });
|
|
}
|
|
};
|
|
|
|
template<typename... Ts> class SelectSetAction : public Action<Ts...> {
|
|
public:
|
|
SelectSetAction(Select *select) : select_(select) {}
|
|
TEMPLATABLE_VALUE(std::string, option)
|
|
|
|
void play(Ts... x) override {
|
|
auto call = this->select_->make_call();
|
|
call.set_option(this->option_.value(x...));
|
|
call.perform();
|
|
}
|
|
|
|
protected:
|
|
Select *select_;
|
|
};
|
|
|
|
} // namespace select
|
|
} // namespace esphome
|