ESPHome  2024.5.0
bluetooth_switch.h
Go to the documentation of this file.
1 #pragma once
2 
4 #include "../ld2410.h"
5 
6 namespace esphome {
7 namespace ld2410 {
8 
9 class BluetoothSwitch : public switch_::Switch, public Parented<LD2410Component> {
10  public:
11  BluetoothSwitch() = default;
12 
13  protected:
14  void write_state(bool state) override;
15 };
16 
17 } // namespace ld2410
18 } // namespace esphome
Base class for all switches.
Definition: switch.h:39
void write_state(bool state) override
This is a workaround until we can figure out a way to get the tflite-micro idf component code availab...
Definition: a01nyub.cpp:7
bool state
The current reported state of the binary sensor.
Definition: switch.h:53
Helper class to easily give an object a parent of type T.
Definition: helpers.h:525