* 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>
61 lines
1.7 KiB
Python
61 lines
1.7 KiB
Python
"""Home Assistant component for accessing the Wallbox Portal API. The sensor component creates multiple sensors regarding wallbox performance."""
|
|
|
|
from homeassistant.helpers.entity import Entity
|
|
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
|
|
|
from .const import (
|
|
CONF_CONNECTIONS,
|
|
CONF_ICON,
|
|
CONF_NAME,
|
|
CONF_SENSOR_TYPES,
|
|
CONF_UNIT_OF_MEASUREMENT,
|
|
DOMAIN,
|
|
)
|
|
|
|
CONF_STATION = "station"
|
|
UPDATE_INTERVAL = 30
|
|
|
|
|
|
async def async_setup_entry(hass, config, async_add_entities):
|
|
"""Create wallbox sensor entities in HASS."""
|
|
wallbox = hass.data[DOMAIN][CONF_CONNECTIONS][config.entry_id]
|
|
|
|
coordinator = wallbox.coordinator
|
|
|
|
async_add_entities(
|
|
WallboxSensor(coordinator, idx, ent, config)
|
|
for idx, ent in enumerate(coordinator.data)
|
|
)
|
|
|
|
|
|
class WallboxSensor(CoordinatorEntity, Entity):
|
|
"""Representation of the Wallbox portal."""
|
|
|
|
def __init__(self, coordinator, idx, ent, config):
|
|
"""Initialize a Wallbox sensor."""
|
|
super().__init__(coordinator)
|
|
self._properties = CONF_SENSOR_TYPES[ent]
|
|
self._name = f"{config.title} {self._properties[CONF_NAME]}"
|
|
self._icon = self._properties[CONF_ICON]
|
|
self._unit = self._properties[CONF_UNIT_OF_MEASUREMENT]
|
|
self._ent = ent
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the name of the sensor."""
|
|
return self._name
|
|
|
|
@property
|
|
def state(self):
|
|
"""Return the state of the sensor."""
|
|
return self.coordinator.data[self._ent]
|
|
|
|
@property
|
|
def unit_of_measurement(self):
|
|
"""Return the unit of the sensor."""
|
|
return self._unit
|
|
|
|
@property
|
|
def icon(self):
|
|
"""Return the icon of the sensor."""
|
|
return self._icon
|