27 lines
580 B
Python
27 lines
580 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"
|
|
|
|
ATTR_DIRECTION = "direction"
|
|
|
|
CONF_ALLOWED_REGIONS = ["china", "north_america", "rest_of_world"]
|
|
CONF_READ_ONLY = "read_only"
|
|
|
|
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,
|
|
}
|