* A platform is not a component * Fix dynalite * SUPPORTED_PLATFORMS --> PLATFORMS * In tests * In tests 2 * Fix SmartThings * Fix ZHA test * Fix Z-Wave * Revert Z-Wave * Use PLATFORMS const in ambient_station * Fix ihc comment
11 lines
320 B
Python
11 lines
320 B
Python
"""The roomba constants."""
|
|
DOMAIN = "roomba"
|
|
PLATFORMS = ["sensor", "binary_sensor", "vacuum"]
|
|
CONF_CERT = "certificate"
|
|
CONF_CONTINUOUS = "continuous"
|
|
CONF_BLID = "blid"
|
|
DEFAULT_CERT = "/etc/ssl/certs/ca-certificates.crt"
|
|
DEFAULT_CONTINUOUS = True
|
|
DEFAULT_DELAY = 1
|
|
ROOMBA_SESSION = "roomba_session"
|
|
BLID = "blid_key"
|