mirror of
https://github.com/esphome/esphome.git
synced 2025-09-02 11:22:24 +01:00
21 lines
410 B
C++
21 lines
410 B
C++
#pragma once
|
|
|
|
#include "esphome/core/component.h"
|
|
#include "esphome/components/switch/switch.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome {
|
|
namespace opentherm {
|
|
|
|
class OpenthermSwitch : public switch_::Switch, public Component {
|
|
protected:
|
|
void write_state(bool state) override;
|
|
|
|
public:
|
|
void setup() override;
|
|
void dump_config() override;
|
|
};
|
|
|
|
} // namespace opentherm
|
|
} // namespace esphome
|