mirror of
https://github.com/esphome/esphome.git
synced 2025-02-02 11:10:55 +00:00
13 lines
270 B
C++
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
|