mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 17:27:45 +01:00
Light: include ON_OFF capability to BRIGHTNESS ColorMode (#2186)
This commit is contained in:
parent
63d87b17aa
commit
3869e56521
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ enum class ColorMode : uint8_t {
|
|||
/// Only on/off control.
|
||||
ON_OFF = (uint8_t) ColorCapability::ON_OFF,
|
||||
/// 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 = (uint8_t)(ColorCapability::ON_OFF | ColorCapability::BRIGHTNESS | ColorCapability::WHITE),
|
||||
/// Controllable color temperature output.
|
||||
|
|
Loading…
Reference in a new issue