Migrate insteon light to color_mode (#69281)
This commit is contained in:
parent
fe65804de1
commit
25d9d14bd9
1 changed files with 4 additions and 6 deletions
|
@ -3,8 +3,8 @@ from pyinsteon.extended_property import ON_LEVEL
|
|||
|
||||
from homeassistant.components.light import (
|
||||
ATTR_BRIGHTNESS,
|
||||
COLOR_MODE_BRIGHTNESS,
|
||||
DOMAIN as LIGHT_DOMAIN,
|
||||
SUPPORT_BRIGHTNESS,
|
||||
LightEntity,
|
||||
)
|
||||
from homeassistant.config_entries import ConfigEntry
|
||||
|
@ -41,6 +41,9 @@ async def async_setup_entry(
|
|||
class InsteonDimmerEntity(InsteonEntity, LightEntity):
|
||||
"""A Class for an Insteon light entity."""
|
||||
|
||||
_attr_color_mode = COLOR_MODE_BRIGHTNESS
|
||||
_attr_supported_color_modes = {COLOR_MODE_BRIGHTNESS}
|
||||
|
||||
@property
|
||||
def brightness(self):
|
||||
"""Return the brightness of this light between 0..255."""
|
||||
|
@ -51,11 +54,6 @@ class InsteonDimmerEntity(InsteonEntity, LightEntity):
|
|||
"""Return the boolean response if the node is on."""
|
||||
return bool(self.brightness)
|
||||
|
||||
@property
|
||||
def supported_features(self):
|
||||
"""Flag supported features."""
|
||||
return SUPPORT_BRIGHTNESS
|
||||
|
||||
async def async_turn_on(self, **kwargs):
|
||||
"""Turn light on."""
|
||||
if ATTR_BRIGHTNESS in kwargs:
|
||||
|
|
Loading…
Add table
Reference in a new issue