Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Elgato Light integration."""
2 
3 from __future__ import annotations
4 
5 from datetime import timedelta
6 import logging
7 from typing import Final
8 
9 # Integration domain
10 DOMAIN: Final = "elgato"
11 
12 LOGGER = logging.getLogger(__package__)
13 SCAN_INTERVAL = timedelta(seconds=10)
14 
15 # Attributes
16 ATTR_ON = "on"
17 
18 # Services
19 SERVICE_IDENTIFY = "identify"