ESPHome 2026.6.0-dev
Loading...
Searching...
No Matches
calibration_reset_button.h
Go to the documentation of this file.
1#pragma once
2
5
6namespace esphome::bl0940 {
7
8class BL0940; // Forward declaration of BL0940 class
9
10class CalibrationResetButton : public button::Button, public Component, public Parented<BL0940> {
11 public:
12 void dump_config() override;
13
14 void press_action() override;
15};
16
17} // namespace esphome::bl0940
Helper class to easily give an object a parent of type T.
Definition helpers.h:1861
Base class for all buttons.
Definition button.h:25