* initial work on alarm * final work on alarm * coveragerc * add tests * add code validation * remove sensor changes for a dedicated PR * code optimization and cleanup * tweaks * tweak #2 * apply suggestion * code quality * code quality #2 * fix cover.py * api typing * use base classes where possibile * apply const as per review comment * cleanup unload entry * apply review comments
10 lines
197 B
Python
10 lines
197 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]
|