ESPHome 2026.3.0-dev
Loading...
Searching...
No Matches
status_binary_sensor.h
Go to the documentation of this file.
1#pragma once
2
5
6namespace esphome::status {
7
9 public:
10 void update() override;
11
12 void setup() override;
13 void dump_config() override;
14
15 bool is_status_binary_sensor() const override { return true; }
16};
17
18} // namespace esphome::status
This class simplifies creating components that periodically check a state.
Definition component.h:527
Base class for all binary_sensor-type classes.