26 lines
585 B
Python
26 lines
585 B
Python
"""Const file for the BMW Connected Drive integration."""
|
|
from homeassistant.const import (
|
|
LENGTH_KILOMETERS,
|
|
LENGTH_MILES,
|
|
VOLUME_GALLONS,
|
|
VOLUME_LITERS,
|
|
)
|
|
|
|
ATTRIBUTION = "Data provided by BMW Connected Drive"
|
|
|
|
CONF_ALLOWED_REGIONS = ["china", "north_america", "rest_of_world"]
|
|
CONF_READ_ONLY = "read_only"
|
|
CONF_USE_LOCATION = "use_location"
|
|
|
|
CONF_ACCOUNT = "account"
|
|
|
|
DATA_HASS_CONFIG = "hass_config"
|
|
DATA_ENTRIES = "entries"
|
|
|
|
UNIT_MAP = {
|
|
"KILOMETERS": LENGTH_KILOMETERS,
|
|
"MILES": LENGTH_MILES,
|
|
"LITERS": VOLUME_LITERS,
|
|
"GALLONS": VOLUME_GALLONS,
|
|
}
|