1
0
mirror of https://github.com/home-assistant/core.git synced 2025-05-11 17:39:17 +00:00
fwestenberg 29b2b6727e
Add Stookwijzer ()
Co-authored-by: Franck Nijhof <frenck@frenck.nl>
Co-authored-by: Franck Nijhof <git@frenck.dev>
2023-01-20 13:42:47 +01:00

17 lines
352 B
Python

"""Constants for the Stookwijzer integration."""
import logging
from typing import Final
from homeassistant.backports.enum import StrEnum
DOMAIN: Final = "stookwijzer"
LOGGER = logging.getLogger(__package__)
class StookwijzerState(StrEnum):
"""Stookwijzer states for sensor entity."""
BLUE = "blauw"
ORANGE = "oranje"
RED = "rood"