""" Support for VOC. For more details about this platform, please refer to the documentation at https://home-assistant.io/components/sensor.volvooncall/ """ import logging from homeassistant.components.volvooncall import VolvoEntity, RESOURCES _LOGGER = logging.getLogger(__name__) def setup_platform(hass, config, add_devices, discovery_info=None): """Set up the Volvo sensors.""" if discovery_info is None: return add_devices([VolvoSensor(hass, *discovery_info)]) class VolvoSensor(VolvoEntity): """Representation of a Volvo sensor.""" @property def state(self): """Return the state of the sensor.""" val = getattr(self.vehicle, self._attribute) if self._attribute == 'odometer': return round(val / 1000) # km return val @property def unit_of_measurement(self): """Return the unit of measurement.""" return RESOURCES[self._attribute][3] @property def icon(self): """Return the icon.""" return RESOURCES[self._attribute][2]