Migrate netatmo light to color_mode (#70912)
This commit is contained in:
parent
361119d5c1
commit
c6d8fffeb4
1 changed files with 4 additions and 1 deletions
|
@ -6,7 +6,7 @@ from typing import Any, cast
|
|||
|
||||
import pyatmo
|
||||
|
||||
from homeassistant.components.light import LightEntity
|
||||
from homeassistant.components.light import ColorMode, LightEntity
|
||||
from homeassistant.config_entries import ConfigEntry
|
||||
from homeassistant.core import HomeAssistant, callback
|
||||
from homeassistant.exceptions import PlatformNotReady
|
||||
|
@ -62,6 +62,9 @@ async def async_setup_entry(
|
|||
class NetatmoLight(NetatmoBase, LightEntity):
|
||||
"""Representation of a Netatmo Presence camera light."""
|
||||
|
||||
_attr_color_mode = ColorMode.ONOFF
|
||||
_attr_supported_color_modes = {ColorMode.ONOFF}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
data_handler: NetatmoDataHandler,
|
||||
|
|
Loading…
Add table
Reference in a new issue