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.
|
#pragma once
|
|
|
|
#include "esphome/core/component.h"
|
|
#include "esphome/components/light/light_state.h"
|
|
#include "esphome/components/light/light_output.h"
|
|
|
|
|
|
namespace esphome {
|
|
namespace yeelight {
|
|
namespace bs2 {
|
|
|
|
class YeelightBS2LightState : public light::LightState
|
|
{
|
|
public:
|
|
YeelightBS2LightState(const std::string &name, light::LightOutput *output) : light::LightState(name, output) {}
|
|
};
|
|
|
|
} // namespace bs2
|
|
} // namespace yeelight
|
|
} // namespace esphome
|