1
0
mirror of https://github.com/home-assistant/core.git synced 2026-02-22 19:07:08 +00:00
Files
core/homeassistant/components/elgato/const.py
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"