1
mirror of https://github.com/home-assistant/core synced 2024-09-03 08:14:07 +02:00

Migrate netatmo light to color_mode (#70912)

This commit is contained in:
Erik Montnemery 2022-04-27 17:27:51 +02:00 committed by GitHub
parent 361119d5c1
commit c6d8fffeb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,