24 lines
561 B
Python
24 lines
561 B
Python
"""Constants for the Renault component."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "renault"
|
|
|
|
CONF_LOCALE = "locale"
|
|
CONF_KAMEREON_ACCOUNT_ID = "kamereon_account_id"
|
|
|
|
# normal number of allowed calls per hour to the API
|
|
# for a single car and the 7 coordinator, it is a scan every 7mn
|
|
MAX_CALLS_PER_HOURS = 60
|
|
|
|
# If throttled time to pause the updates, in seconds
|
|
COOLING_UPDATES_SECONDS = 60 * 15 # 15 minutes
|
|
|
|
PLATFORMS = [
|
|
Platform.BINARY_SENSOR,
|
|
Platform.BUTTON,
|
|
Platform.DEVICE_TRACKER,
|
|
Platform.SELECT,
|
|
Platform.SENSOR,
|
|
]
|