Files
2026-02-02 17:05:48 +01:00

17 lines
313 B
Python

"""Constants for the Elgato Light integration."""
from __future__ import annotations
from datetime import timedelta
import logging
from typing import Final
# Integration domain
DOMAIN: Final = "elgato"
LOGGER = logging.getLogger(__package__)
SCAN_INTERVAL = timedelta(seconds=10)
# Attributes
ATTR_ON = "on"