mirror of
https://github.com/esphome/esphome.git
synced 2025-04-06 10:50:28 +01:00
22 lines
499 B
C++
22 lines
499 B
C++
#pragma once
|
|
|
|
#include "esphome/components/esphome/ota/ota_esphome.h"
|
|
#include "esphome/components/switch/switch.h"
|
|
#include "esphome/core/component.h"
|
|
|
|
namespace esphome {
|
|
namespace safe_mode {
|
|
|
|
class SafeModeSwitch : public switch_::Switch, public Component {
|
|
public:
|
|
void dump_config() override;
|
|
void set_ota(esphome::ESPHomeOTAComponent *ota);
|
|
|
|
protected:
|
|
esphome::ESPHomeOTAComponent *ota_;
|
|
void write_state(bool state) override;
|
|
};
|
|
|
|
} // namespace safe_mode
|
|
} // namespace esphome
|