2021-10-21 17:10:23 +00:00
|
|
|
"""The lookin integration constants."""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
from typing import Final
|
|
|
|
|
2021-12-06 03:10:07 +00:00
|
|
|
from homeassistant.const import Platform
|
|
|
|
|
2021-12-10 18:52:51 +00:00
|
|
|
MODEL_NAMES: Final = ["LOOKin Remote", "LOOKin Remote", "LOOKin Remote2"]
|
|
|
|
|
2021-10-21 17:10:23 +00:00
|
|
|
DOMAIN: Final = "lookin"
|
2021-12-10 18:52:51 +00:00
|
|
|
PLATFORMS: Final = [Platform.CLIMATE, Platform.MEDIA_PLAYER, Platform.SENSOR]
|