Home Assistant Unofficial Reference
2024.12.1
const.py
Go to the documentation of this file.
1
"""Constants for the devolo_home_control integration."""
2
3
import
re
4
5
from
homeassistant.const
import
Platform
6
7
DOMAIN =
"devolo_home_control"
8
DEFAULT_MYDEVOLO =
"https://www.mydevolo.com"
9
PLATFORMS = [
10
Platform.BINARY_SENSOR,
11
Platform.CLIMATE,
12
Platform.COVER,
13
Platform.LIGHT,
14
Platform.SENSOR,
15
Platform.SIREN,
16
Platform.SWITCH,
17
]
18
CONF_MYDEVOLO =
"mydevolo_url"
19
GATEWAY_SERIAL_PATTERN = re.compile(
r"\d{16}"
)
20
SUPPORTED_MODEL_TYPES = [
"2600"
,
"2601"
]
homeassistant.const
Definition:
const.py:1
core
homeassistant
components
devolo_home_control
const.py
Generated by
1.9.1