1
0
mirror of https://github.com/esphome/esphome.git synced 2025-04-06 10:50:28 +01:00
Keith Burzinski f46c499c4e
Separate OTABackend from OTA component (#6459)
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
2024-05-16 14:01:09 +12:00

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