1
0
mirror of https://github.com/esphome/esphome.git synced 2025-02-02 11:10:55 +00:00
esphome/esphome/components/light/light_output.cpp
2021-08-11 16:51:35 +12:00

13 lines
270 B
C++

#include "light_output.h"
#include "transformers.h"
namespace esphome {
namespace light {
std::unique_ptr<LightTransformer> LightOutput::create_default_transition() {
return make_unique<LightTransitionTransformer>();
}
} // namespace light
} // namespace esphome