ESPHome 2026.2.2
Loading...
Searching...
No Matches
micronova_button.h
Go to the documentation of this file.
1#pragma once
2
6
7namespace esphome::micronova {
8
10 public:
12 void dump_config() override {
13 LOG_BUTTON("", "Micronova button", this);
14 this->dump_base_config();
15 }
16
17 void set_memory_data(uint8_t f) { this->memory_data_ = f; }
18 uint8_t get_memory_data() { return this->memory_data_; }
19
20 protected:
21 void press_action() override;
22};
23
24} // namespace esphome::micronova
uint8_t m
Definition bl0906.h:1
ESPDEPRECATED("set_retry is deprecated and will be removed in 2026.8.0. Use set_timeout or set_interval instead.", "2026.2.0") void set_retry(const std uint32_t uint8_t std::function< RetryResult(uint8_t)> && f
Definition component.h:373
Base class for all buttons.
Definition button.h:25