* Wallbox component added * resolved mergeconflicts from upstream * fixed an incorrect removal in CODEOWNERS file * fixes for pullrequest automatic test * clean up code after PR tests * fixed strings.json * fix config_flow error > wallbox * fixed some formatting issues * fix pylint warnings * fixed error in number.py > set value * pylint warnings fixed * some more pylint fixes * isort fixes * fix unused_import pylint * remove tests * remove test requirements * config flow test * test errors resolved * test file formatting * isort on test file * sensor test * isort on test * isort test const * remove not working sensor test * remove test const * add switch, number and lock test * docstrings for test classes * sort test_number, create test_sensor * additional tests * fix test error * reduced PR to 1 component * newline in const * ignore test coverage -> dependency on external device (wallbox) * do not ignore config_flow * add test for validate_input * remove obsolete import * additional test config flow * change test sensor * docstring * add additional test for exceptions * fix test_config * more tests * fix test_config_flow * fixed http error test * catch connectionerror and introduce testing for this error * remove .coveragefile * change comment * Update homeassistant/components/wallbox/__init__.py review suggestion by janiversen Co-authored-by: jan iversen <jancasacondor@gmail.com> * Update homeassistant/components/wallbox/__init__.py review suggestion by janiversen (format only) Co-authored-by: jan iversen <jancasacondor@gmail.com> * Processed review comments, include more testing for sensor component * Isolated the async_add_executor_job to make the solution more async * add a config flow test * Revert "add a config flow test" This reverts commit9c1af82fff
. * Revert "Isolated the async_add_executor_job to make the solution more async" This reverts commit0bf034c331
. * Make component more async and add config flow tests * Changes based on review comments * made _ methods in WallboxHub for the 'non-async' call to the API and try-catch. Stored the wallbox in the class. * moved the coordinator to __init__ and pass it as part of the WallboxHub class * removed obsolete function in __init__ * removed CONNECTION_CLASS = config_entries.CONN_CLASS_CLOUD_POLL * fixed spelling and imports on test files * did isort on component files Co-authored-by: jan iversen <jancasacondor@gmail.com>
99 lines
2.6 KiB
Python
99 lines
2.6 KiB
Python
"""Constants for the Wallbox integration."""
|
|
from homeassistant.const import (
|
|
CONF_ICON,
|
|
CONF_NAME,
|
|
CONF_UNIT_OF_MEASUREMENT,
|
|
ELECTRICAL_CURRENT_AMPERE,
|
|
ENERGY_KILO_WATT_HOUR,
|
|
LENGTH_KILOMETERS,
|
|
PERCENTAGE,
|
|
POWER_KILO_WATT,
|
|
STATE_UNAVAILABLE,
|
|
)
|
|
|
|
DOMAIN = "wallbox"
|
|
|
|
CONF_STATION = "station"
|
|
|
|
CONF_CONNECTIONS = "connections"
|
|
CONF_ROUND = "round"
|
|
|
|
CONF_SENSOR_TYPES = {
|
|
"charging_power": {
|
|
CONF_ICON: "mdi:ev-station",
|
|
CONF_NAME: "Charging Power",
|
|
CONF_ROUND: 2,
|
|
CONF_UNIT_OF_MEASUREMENT: POWER_KILO_WATT,
|
|
STATE_UNAVAILABLE: False,
|
|
},
|
|
"max_available_power": {
|
|
CONF_ICON: "mdi:ev-station",
|
|
CONF_NAME: "Max Available Power",
|
|
CONF_ROUND: 0,
|
|
CONF_UNIT_OF_MEASUREMENT: ELECTRICAL_CURRENT_AMPERE,
|
|
STATE_UNAVAILABLE: False,
|
|
},
|
|
"charging_speed": {
|
|
CONF_ICON: "mdi:speedometer",
|
|
CONF_NAME: "Charging Speed",
|
|
CONF_ROUND: 0,
|
|
CONF_UNIT_OF_MEASUREMENT: None,
|
|
STATE_UNAVAILABLE: False,
|
|
},
|
|
"added_range": {
|
|
CONF_ICON: "mdi:map-marker-distance",
|
|
CONF_NAME: "Added Range",
|
|
CONF_ROUND: 0,
|
|
CONF_UNIT_OF_MEASUREMENT: LENGTH_KILOMETERS,
|
|
STATE_UNAVAILABLE: False,
|
|
},
|
|
"added_energy": {
|
|
CONF_ICON: "mdi:battery-positive",
|
|
CONF_NAME: "Added Energy",
|
|
CONF_ROUND: 2,
|
|
CONF_UNIT_OF_MEASUREMENT: ENERGY_KILO_WATT_HOUR,
|
|
STATE_UNAVAILABLE: False,
|
|
},
|
|
"charging_time": {
|
|
CONF_ICON: "mdi:timer",
|
|
CONF_NAME: "Charging Time",
|
|
CONF_ROUND: None,
|
|
CONF_UNIT_OF_MEASUREMENT: None,
|
|
STATE_UNAVAILABLE: False,
|
|
},
|
|
"cost": {
|
|
CONF_ICON: "mdi:ev-station",
|
|
CONF_NAME: "Cost",
|
|
CONF_ROUND: None,
|
|
CONF_UNIT_OF_MEASUREMENT: None,
|
|
STATE_UNAVAILABLE: False,
|
|
},
|
|
"state_of_charge": {
|
|
CONF_ICON: "mdi:battery-charging-80",
|
|
CONF_NAME: "State of Charge",
|
|
CONF_ROUND: None,
|
|
CONF_UNIT_OF_MEASUREMENT: PERCENTAGE,
|
|
STATE_UNAVAILABLE: False,
|
|
},
|
|
"current_mode": {
|
|
CONF_ICON: "mdi:ev-station",
|
|
CONF_NAME: "Current Mode",
|
|
CONF_ROUND: None,
|
|
CONF_UNIT_OF_MEASUREMENT: None,
|
|
STATE_UNAVAILABLE: False,
|
|
},
|
|
"depot_price": {
|
|
CONF_ICON: "mdi:ev-station",
|
|
CONF_NAME: "Depot Price",
|
|
CONF_ROUND: 2,
|
|
CONF_UNIT_OF_MEASUREMENT: None,
|
|
STATE_UNAVAILABLE: False,
|
|
},
|
|
"status_description": {
|
|
CONF_ICON: "mdi:ev-station",
|
|
CONF_NAME: "Status Description",
|
|
CONF_ROUND: None,
|
|
CONF_UNIT_OF_MEASUREMENT: None,
|
|
STATE_UNAVAILABLE: False,
|
|
},
|
|
}
|