ESPHome  2025.2.0
logger_level_select.h
Go to the documentation of this file.
1 #pragma once
2 
6 namespace esphome {
7 namespace logger {
8 class LoggerLevelSelect : public Component, public select::Select, public Parented<Logger> {
9  public:
10  void publish_state(int level);
11  void setup() override;
12  void control(const std::string &value) override;
13 };
14 } // namespace logger
15 } // namespace esphome
void control(const std::string &value) override
Base-class for all selects.
Definition: select.h:31
Implementation of SPI Controller mode.
Definition: a01nyub.cpp:7
Helper class to easily give an object a parent of type T.
Definition: helpers.h:538