rename folder
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user