Files
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