* Initial stuff * More work in place * Starting with tests * Device registry in place * Hound * Linting * Member comments (including extracting device registry) * Member comments (plus I forgot cleanup!) * Hound * More Hound * Removed old import * Adding config entry test to coverage * Updated strings
14 lines
311 B
Python
14 lines
311 B
Python
"""Define constants for the SimpliSafe component."""
|
|
import logging
|
|
from datetime import timedelta
|
|
|
|
LOGGER = logging.getLogger('homeassistant.components.rainmachine')
|
|
|
|
DOMAIN = 'rainmachine'
|
|
|
|
DATA_CLIENT = 'client'
|
|
|
|
DEFAULT_PORT = 8080
|
|
DEFAULT_SCAN_INTERVAL = timedelta(seconds=60)
|
|
|
|
TOPIC_UPDATE = 'update_{0}'
|