1
mirror of https://github.com/home-assistant/core synced 2024-08-02 23:40:32 +02:00
ha-core/homeassistant/components/lookin/const.py
2022-01-14 14:22:06 -10:00

25 lines
502 B
Python

"""The lookin integration constants."""
from __future__ import annotations
from typing import Final
from homeassistant.const import Platform
MODEL_NAMES: Final = ["LOOKin Remote", "LOOKin Remote", "LOOKin Remote2"]
DOMAIN: Final = "lookin"
PLATFORMS: Final = [
Platform.CLIMATE,
Platform.LIGHT,
Platform.MEDIA_PLAYER,
Platform.SENSOR,
]
TYPE_TO_PLATFORM = {
"01": Platform.MEDIA_PLAYER,
"02": Platform.MEDIA_PLAYER,
"03": Platform.LIGHT,
"EF": Platform.CLIMATE,
}