core/homeassistant/components/renault/const.py

18 lines
356 B
Python
Raw Normal View History

2021-07-28 19:41:11 +00:00
"""Constants for the Renault component."""
from homeassistant.const import Platform
2021-07-28 19:41:11 +00:00
DOMAIN = "renault"
CONF_LOCALE = "locale"
CONF_KAMEREON_ACCOUNT_ID = "kamereon_account_id"
DEFAULT_SCAN_INTERVAL = 420 # 7 minutes
2021-07-28 19:41:11 +00:00
PLATFORMS = [
Platform.BINARY_SENSOR,
Platform.BUTTON,
Platform.DEVICE_TRACKER,
Platform.SELECT,
Platform.SENSOR,
2021-07-28 19:41:11 +00:00
]