1
mirror of https://github.com/home-assistant/core synced 2024-08-02 23:40:32 +02:00
ha-core/homeassistant/components/skybell/const.py

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__)