ESPHome 2026.1.0-dev
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
Base class for all buttons.
Definition button.h:25