mirror of
https://github.com/home-assistant/core.git
synced 2025-07-02 10:57:09 +00:00
12 lines
198 B
Python
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]
|