mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-22 19:06:28 +01: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]
|