You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
397 B
18 lines
397 B
#pragma once
|
|
|
|
#include "esphome/core/component.h"
|
|
#include "esphome/components/output/binary_output.h"
|
|
|
|
namespace esphome {
|
|
namespace empty_binary_output {
|
|
|
|
class EmptyBinaryOutput : public output::BinaryOutput, public Component {
|
|
public:
|
|
void setup() override;
|
|
void write_state(bool state) override;
|
|
void dump_config() override;
|
|
};
|
|
|
|
|
|
} //namespace empty_binary_output
|
|
} //namespace esphome
|