mirror of
https://github.com/esphome/esphome.git
synced 2026-02-26 05:53:12 -07:00
11 lines
244 B
C++
11 lines
244 B
C++
#include "light_output.h"
|
|
#include "transformers.h"
|
|
|
|
namespace esphome::light {
|
|
|
|
std::unique_ptr<LightTransformer> LightOutput::create_default_transition() {
|
|
return make_unique<LightTransitionTransformer>();
|
|
}
|
|
|
|
} // namespace esphome::light
|