mirror of
https://github.com/esphome/esphome.git
synced 2024-11-14 02:58:11 +01:00
support sending keys to the collector (#4838)
Co-authored-by: Samuel Sieb <samuel@sieb.net>
This commit is contained in:
parent
11bb46e393
commit
cc76e5353c
3 changed files with 7 additions and 3 deletions
|
@ -33,7 +33,7 @@ CONFIG_SCHEMA = cv.All(
|
||||||
cv.COMPONENT_SCHEMA.extend(
|
cv.COMPONENT_SCHEMA.extend(
|
||||||
{
|
{
|
||||||
cv.GenerateID(): cv.declare_id(KeyCollector),
|
cv.GenerateID(): cv.declare_id(KeyCollector),
|
||||||
cv.GenerateID(CONF_SOURCE_ID): cv.use_id(key_provider.KeyProvider),
|
cv.Optional(CONF_SOURCE_ID): cv.use_id(key_provider.KeyProvider),
|
||||||
cv.Optional(CONF_MIN_LENGTH): cv.int_,
|
cv.Optional(CONF_MIN_LENGTH): cv.int_,
|
||||||
cv.Optional(CONF_MAX_LENGTH): cv.int_,
|
cv.Optional(CONF_MAX_LENGTH): cv.int_,
|
||||||
cv.Optional(CONF_START_KEYS): cv.string,
|
cv.Optional(CONF_START_KEYS): cv.string,
|
||||||
|
@ -55,6 +55,7 @@ CONFIG_SCHEMA = cv.All(
|
||||||
async def to_code(config):
|
async def to_code(config):
|
||||||
var = cg.new_Pvariable(config[CONF_ID])
|
var = cg.new_Pvariable(config[CONF_ID])
|
||||||
await cg.register_component(var, config)
|
await cg.register_component(var, config)
|
||||||
|
if CONF_SOURCE_ID in config:
|
||||||
source = await cg.get_variable(config[CONF_SOURCE_ID])
|
source = await cg.get_variable(config[CONF_SOURCE_ID])
|
||||||
cg.add(var.set_provider(source))
|
cg.add(var.set_provider(source))
|
||||||
if CONF_MIN_LENGTH in config:
|
if CONF_MIN_LENGTH in config:
|
||||||
|
|
|
@ -52,6 +52,8 @@ void KeyCollector::clear(bool progress_update) {
|
||||||
this->progress_trigger_->trigger(this->result_, 0);
|
this->progress_trigger_->trigger(this->result_, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void KeyCollector::send_key(uint8_t key) { this->key_pressed_(key); }
|
||||||
|
|
||||||
void KeyCollector::key_pressed_(uint8_t key) {
|
void KeyCollector::key_pressed_(uint8_t key) {
|
||||||
this->last_key_time_ = millis();
|
this->last_key_time_ = millis();
|
||||||
if (!this->start_keys_.empty() && !this->start_key_) {
|
if (!this->start_keys_.empty() && !this->start_key_) {
|
||||||
|
|
|
@ -27,6 +27,7 @@ class KeyCollector : public Component {
|
||||||
void set_timeout(int timeout) { this->timeout_ = timeout; };
|
void set_timeout(int timeout) { this->timeout_ = timeout; };
|
||||||
|
|
||||||
void clear(bool progress_update = true);
|
void clear(bool progress_update = true);
|
||||||
|
void send_key(uint8_t key);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void key_pressed_(uint8_t key);
|
void key_pressed_(uint8_t key);
|
||||||
|
|
Loading…
Reference in a new issue