25 lines
836 B
Python
25 lines
836 B
Python
"""Constants for the Wallbox integration."""
|
|
|
|
DOMAIN = "wallbox"
|
|
|
|
CONF_STATION = "station"
|
|
CONF_ADDED_ENERGY_KEY = "added_energy"
|
|
CONF_ADDED_RANGE_KEY = "added_range"
|
|
CONF_CHARGING_POWER_KEY = "charging_power"
|
|
CONF_CHARGING_SPEED_KEY = "charging_speed"
|
|
CONF_CHARGING_TIME_KEY = "charging_time"
|
|
CONF_COST_KEY = "cost"
|
|
CONF_CURRENT_MODE_KEY = "current_mode"
|
|
CONF_CURRENT_VERSION_KEY = "currentVersion"
|
|
CONF_DATA_KEY = "config_data"
|
|
CONF_DEPOT_PRICE_KEY = "depot_price"
|
|
CONF_SERIAL_NUMBER_KEY = "serial_number"
|
|
CONF_PART_NUMBER_KEY = "part_number"
|
|
CONF_SOFTWARE_KEY = "software"
|
|
CONF_MAX_AVAILABLE_POWER_KEY = "max_available_power"
|
|
CONF_MAX_CHARGING_CURRENT_KEY = "max_charging_current"
|
|
CONF_NAME_KEY = "name"
|
|
CONF_STATE_OF_CHARGE_KEY = "state_of_charge"
|
|
CONF_STATUS_DESCRIPTION_KEY = "status_description"
|
|
CONF_CONNECTIONS = "connections"
|