* Fix Volvo On Call: Locked shows as Unlocked #43260 and #49224 * Update binary_sensor.py Black changed 'Door lock' to "Door lock" (double quotes) * Update homeassistant/components/volvooncall/binary_sensor.py Co-authored-by: Martin Hjelmare <marhje52@gmail.com> * Update binary_sensor.py Amend code to pass pylint test Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
29 lines
981 B
Python
29 lines
981 B
Python
"""Support for VOC."""
|
|
from homeassistant.components.binary_sensor import DEVICE_CLASSES, BinarySensorEntity
|
|
|
|
from . import DATA_KEY, VolvoEntity
|
|
|
|
|
|
async def async_setup_platform(hass, config, async_add_entities, discovery_info=None):
|
|
"""Set up the Volvo sensors."""
|
|
if discovery_info is None:
|
|
return
|
|
async_add_entities([VolvoSensor(hass.data[DATA_KEY], *discovery_info)])
|
|
|
|
|
|
class VolvoSensor(VolvoEntity, BinarySensorEntity):
|
|
"""Representation of a Volvo sensor."""
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return True if the binary sensor is on, but invert for the 'Door lock'."""
|
|
if self.instrument.attr == "is_locked":
|
|
return not self.instrument.is_on
|
|
return self.instrument.is_on
|
|
|
|
@property
|
|
def device_class(self):
|
|
"""Return the class of this sensor, from DEVICE_CLASSES."""
|
|
if self.instrument.device_class in DEVICE_CLASSES:
|
|
return self.instrument.device_class
|
|
return None
|