additional components, clean-up

This commit is contained in:
HB
2020-09-29 17:29:47 +02:00
parent fce81d14a9
commit 54c7dabb67
20 changed files with 259 additions and 12 deletions
@@ -1,9 +1,11 @@
#include "esphome.h"
#include "esphome/core/log.h"
#include "empty_custom_light.h"
namespace esphome {
namespace empty_custom_light {
static const char *TAG = "empty_custom_light.light";
void EmptyCustomLightOutput::setup() {
}
@@ -23,7 +25,7 @@ void EmptyCustomLightOutput::write_state(light::LightState *state) {
}
void EmptyCustomLightOutput::dump_config(){
ESP_LOGCONFIG(TAG, "Empty custom light");
}
} //namespace empty_custom_light
@@ -1,6 +1,7 @@
#pragma once
#include "esphome/core/component.h"
#include "esphome/components/output/float_output.h"
#include "esphome/components/light/light_output.h"
namespace esphome {