2021-02-03 16:38:12 +00:00
|
|
|
"""Constants for the Mazda Connected Services integration."""
|
|
|
|
|
|
|
|
DOMAIN = "mazda"
|
|
|
|
|
|
|
|
DATA_CLIENT = "mazda_client"
|
|
|
|
DATA_COORDINATOR = "coordinator"
|
2021-05-26 14:36:36 +00:00
|
|
|
DATA_VEHICLES = "vehicles"
|
2021-02-03 16:38:12 +00:00
|
|
|
|
|
|
|
MAZDA_REGIONS = {"MNAO": "North America", "MME": "Europe", "MJO": "Japan"}
|
2021-05-26 14:36:36 +00:00
|
|
|
|
|
|
|
SERVICES = [
|
|
|
|
"send_poi",
|
|
|
|
"start_charging",
|
|
|
|
"start_engine",
|
|
|
|
"stop_charging",
|
|
|
|
"stop_engine",
|
|
|
|
"turn_off_hazard_lights",
|
|
|
|
"turn_on_hazard_lights",
|
|
|
|
]
|