mirror of
https://github.com/home-assistant/core.git
synced 2025-11-07 18:09:31 +00:00
16 lines
332 B
Python
16 lines
332 B
Python
"""Constants for the Volvo integration."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "volvo"
|
|
PLATFORMS: list[Platform] = [
|
|
Platform.BINARY_SENSOR,
|
|
Platform.DEVICE_TRACKER,
|
|
Platform.SENSOR,
|
|
]
|
|
|
|
API_NONE_VALUE = "UNSPECIFIED"
|
|
CONF_VIN = "vin"
|
|
DATA_BATTERY_CAPACITY = "battery_capacity_kwh"
|
|
MANUFACTURER = "Volvo"
|