mirror of
https://github.com/home-assistant/core.git
synced 2025-12-19 18:38:58 +00:00
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Joostlek <joostlek@outlook.com>
15 lines
277 B
Python
15 lines
277 B
Python
"""Constants for the Volvo integration."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "volvo"
|
|
PLATFORMS: list[Platform] = [Platform.SENSOR]
|
|
|
|
ATTR_API_TIMESTAMP = "api_timestamp"
|
|
|
|
CONF_VIN = "vin"
|
|
|
|
DATA_BATTERY_CAPACITY = "battery_capacity_kwh"
|
|
|
|
MANUFACTURER = "Volvo"
|