hass-core/homeassistant/components/homematicip_cloud/const.py
Paulus Schoutsen 4b1de61110
Use relative imports inside integrations (#22235)
* Use relative imports inside integrations

* Lint

* Fix automation tests

* Fix scene imports
2019-03-20 22:56:46 -07:00

25 lines
436 B
Python

"""Constants for the HomematicIP Cloud component."""
import logging
_LOGGER = logging.getLogger('.')
DOMAIN = 'homematicip_cloud'
COMPONENTS = [
'alarm_control_panel',
'binary_sensor',
'climate',
'cover',
'light',
'sensor',
'switch',
'weather',
]
CONF_ACCESSPOINT = 'accesspoint'
CONF_AUTHTOKEN = 'authtoken'
HMIPC_NAME = 'name'
HMIPC_HAPID = 'hapid'
HMIPC_AUTHTOKEN = 'authtoken'
HMIPC_PIN = 'pin'