1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-27 06:28:31 +00:00
Files
core/homeassistant/components/comelit/const.py

12 lines
198 B
Python

"""Comelit constants."""
import logging
from aiocomelit.const import BRIDGE, VEDO
_LOGGER = logging.getLogger(__package__)
DOMAIN = "comelit"
DEFAULT_PORT = 80
DEVICE_TYPE_LIST = [BRIDGE, VEDO]