mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-23 01:05:35 +01:00
12 lines
231 B
Python
12 lines
231 B
Python
"""Constants for the Skybell HD Doorbell."""
|
|
import logging
|
|
from typing import Final
|
|
|
|
DEFAULT_NAME = "SkyBell"
|
|
DOMAIN: Final = "skybell"
|
|
|
|
IMAGE_AVATAR = "avatar"
|
|
IMAGE_ACTIVITY = "activity"
|
|
|
|
LOGGER = logging.getLogger(__package__)
|