* initial commit * small corrections * fix linting error * add new files to coveragerc * rename devolo_sensor to devolo_device * use correct import * use binary_switch platform * use binary_switch platform * add binary_sensor to coverage * adjustments according PR review * make super call easier to read * use f-string instead of concatenating * update docstrings - remove device_id property * add will_remove_from_hass
8 lines
294 B
Python
8 lines
294 B
Python
"""Constants for the devolo_home_control integration."""
|
|
|
|
DOMAIN = "devolo_home_control"
|
|
DEFAULT_MYDEVOLO = "https://www.mydevolo.com"
|
|
DEFAULT_MPRM = "https://homecontrol.mydevolo.com"
|
|
PLATFORMS = ["binary_sensor", "switch"]
|
|
CONF_MYDEVOLO = "mydevolo_url"
|
|
CONF_HOMECONTROL = "home_control_url"
|