mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-21 06:05:26 +01:00
17 lines
313 B
Python
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"
|