mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 19:54:14 +01:00
42 lines
1.3 KiB
C
42 lines
1.3 KiB
C
|
#pragma once
|
||
|
|
||
|
#include "esphome/core/component.h"
|
||
|
#include "esphome/components/output/float_output.h"
|
||
|
#include "esphome/components/light/light_output.h"
|
||
|
|
||
|
namespace esphome {
|
||
|
namespace cwww {
|
||
|
|
||
|
class CWWWLightOutput : public light::LightOutput {
|
||
|
public:
|
||
|
CWWWLightOutput(output::FloatOutput *cold_white, output::FloatOutput *warm_white, float cold_white_temperature,
|
||
|
float warm_white_temperature)
|
||
|
: cold_white_(cold_white),
|
||
|
warm_white_(warm_white),
|
||
|
cold_white_temperature_(cold_white_temperature),
|
||
|
warm_white_temperature_(warm_white_temperature) {}
|
||
|
light::LightTraits get_traits() override {
|
||
|
auto traits = light::LightTraits();
|
||
|
traits.set_supports_brightness(true);
|
||
|
traits.set_supports_rgb(false);
|
||
|
traits.set_supports_rgb_white_value(false);
|
||
|
traits.set_supports_color_temperature(true);
|
||
|
return traits;
|
||
|
}
|
||
|
void write_state(light::LightState *state) override {
|
||
|
float cwhite, wwhite;
|
||
|
state->current_values_as_cwww(&cwhite, &wwhite);
|
||
|
this->cold_white_->set_level(cwhite);
|
||
|
this->warm_white_->set_level(wwhite);
|
||
|
}
|
||
|
|
||
|
protected:
|
||
|
output::FloatOutput *cold_white_;
|
||
|
output::FloatOutput *warm_white_;
|
||
|
float cold_white_temperature_;
|
||
|
float warm_white_temperature_;
|
||
|
};
|
||
|
|
||
|
} // namespace cwww
|
||
|
} // namespace esphome
|