mirror of
https://github.com/home-assistant/core.git
synced 2025-05-11 17:39:17 +00:00

Co-authored-by: Franck Nijhof <frenck@frenck.nl> Co-authored-by: Franck Nijhof <git@frenck.dev>
17 lines
352 B
Python
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"
|