Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Renault component."""
2 
3 from homeassistant.const import Platform
4 
5 DOMAIN = "renault"
6 
7 CONF_LOCALE = "locale"
8 CONF_KAMEREON_ACCOUNT_ID = "kamereon_account_id"
9 
10 DEFAULT_SCAN_INTERVAL = 420 # 7 minutes
11 
12 PLATFORMS = [
13  Platform.BINARY_SENSOR,
14  Platform.BUTTON,
15  Platform.DEVICE_TRACKER,
16  Platform.SELECT,
17  Platform.SENSOR,
18 ]