15 lines
411 B
Python
15 lines
411 B
Python
"""The roomba constants."""
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "roomba"
|
|
PLATFORMS = [Platform.SENSOR, Platform.BINARY_SENSOR, Platform.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"
|
|
CANCEL_STOP = "cancel_stop"
|