Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Comelit constants."""
2 
3 import logging
4 
5 from aiocomelit.const import BRIDGE, VEDO
6 
7 _LOGGER = logging.getLogger(__package__)
8 
9 DOMAIN = "comelit"
10 DEFAULT_PORT = 80
11 DEVICE_TYPE_LIST = [BRIDGE, VEDO]