mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
Light: include ON_OFF capability to BRIGHTNESS ColorMode (#2186)
This commit is contained in:
parent
5cb56bc677
commit
b0fa317302
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ enum class ColorMode : uint8_t {
|
||||||
/// Only on/off control.
|
/// Only on/off control.
|
||||||
ON_OFF = (uint8_t) ColorCapability::ON_OFF,
|
ON_OFF = (uint8_t) ColorCapability::ON_OFF,
|
||||||
/// Dimmable light.
|
/// Dimmable light.
|
||||||
BRIGHTNESS = (uint8_t) ColorCapability::BRIGHTNESS,
|
BRIGHTNESS = (uint8_t)(ColorCapability::ON_OFF | ColorCapability::BRIGHTNESS),
|
||||||
/// White output only (use only if the light also has another color mode such as RGB).
|
/// White output only (use only if the light also has another color mode such as RGB).
|
||||||
WHITE = (uint8_t)(ColorCapability::ON_OFF | ColorCapability::BRIGHTNESS | ColorCapability::WHITE),
|
WHITE = (uint8_t)(ColorCapability::ON_OFF | ColorCapability::BRIGHTNESS | ColorCapability::WHITE),
|
||||||
/// Controllable color temperature output.
|
/// Controllable color temperature output.
|
||||||
|
|
Loading…
Reference in a new issue