ESPHome 2025.5.0
Loading...
Searching...
No Matches
key_collector.h
Go to the documentation of this file.
1#pragma once
2
3#include <utility>
6
7namespace esphome {
8namespace key_collector {
9
10class KeyCollector : public Component {
11 public:
13 void loop() override;
14 void dump_config() override;
16 void set_min_length(int min_length) { this->min_length_ = min_length; };
17 void set_max_length(int max_length) { this->max_length_ = max_length; };
18 void set_start_keys(std::string start_keys) { this->start_keys_ = std::move(start_keys); };
19 void set_end_keys(std::string end_keys) { this->end_keys_ = std::move(end_keys); };
20 void set_end_key_required(bool end_key_required) { this->end_key_required_ = end_key_required; };
21 void set_back_keys(std::string back_keys) { this->back_keys_ = std::move(back_keys); };
22 void set_clear_keys(std::string clear_keys) { this->clear_keys_ = std::move(clear_keys); };
23 void set_allowed_keys(std::string allowed_keys) { this->allowed_keys_ = std::move(allowed_keys); };
27 void set_timeout(int timeout) { this->timeout_ = timeout; };
28 void set_enabled(bool enabled);
29
30 void clear(bool progress_update = true);
31 void send_key(uint8_t key);
32
33 protected:
34 void key_pressed_(uint8_t key);
35
38 std::string start_keys_;
39 std::string end_keys_;
40 bool end_key_required_{false};
41 std::string back_keys_;
42 std::string clear_keys_;
43 std::string allowed_keys_;
44 std::string result_;
45 uint8_t start_key_{0};
50 uint32_t timeout_{0};
52};
53
54template<typename... Ts> class EnableAction : public Action<Ts...>, public Parented<KeyCollector> {
55 void play(Ts... x) override { this->parent_->set_enabled(true); }
56};
57
58template<typename... Ts> class DisableAction : public Action<Ts...>, public Parented<KeyCollector> {
59 void play(Ts... x) override { this->parent_->set_enabled(false); }
60};
61
62} // namespace key_collector
63} // namespace esphome
Helper class to easily give an object a parent of type T.
Definition helpers.h:538
void set_provider(key_provider::KeyProvider *provider)
void set_start_keys(std::string start_keys)
Trigger< std::string, uint8_t > * get_timeout_trigger() const
void set_end_key_required(bool end_key_required)
void set_back_keys(std::string back_keys)
Trigger< std::string, uint8_t > * progress_trigger_
void set_clear_keys(std::string clear_keys)
void set_end_keys(std::string end_keys)
Trigger< std::string, uint8_t > * get_progress_trigger() const
Trigger< std::string, uint8_t, uint8_t > * get_result_trigger() const
void set_allowed_keys(std::string allowed_keys)
Trigger< std::string, uint8_t, uint8_t > * result_trigger_
Trigger< std::string, uint8_t > * timeout_trigger_
void clear(bool progress_update=true)
interface for components that provide keypresses
Providing packet encoding functions for exchanging data with a remote host.
Definition a01nyub.cpp:7
uint16_t x
Definition tt21100.cpp:5