11 lines
198 B
Python
11 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]
|