hass-core/homeassistant/components/rainmachine/const.py
Aaron Bach 8aa1283adc
Add Rainmachine config entry (#18419)
* 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
2018-11-14 13:23:49 -07:00

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}'