mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 21:27:38 +00:00
Fix Charge Cable binary sensor in Teslemetry (#147136)
This commit is contained in:
parent
2859e7de9b
commit
96e0d1f5c6
@ -126,7 +126,7 @@ VEHICLE_DESCRIPTIONS: tuple[TeslemetryBinarySensorEntityDescription, ...] = (
|
|||||||
polling=True,
|
polling=True,
|
||||||
polling_value_fn=lambda x: x != "<invalid>",
|
polling_value_fn=lambda x: x != "<invalid>",
|
||||||
streaming_listener=lambda vehicle, callback: vehicle.listen_ChargingCableType(
|
streaming_listener=lambda vehicle, callback: vehicle.listen_ChargingCableType(
|
||||||
lambda value: callback(value != "Unknown")
|
lambda value: callback(value is not None and value != "Unknown")
|
||||||
),
|
),
|
||||||
entity_category=EntityCategory.DIAGNOSTIC,
|
entity_category=EntityCategory.DIAGNOSTIC,
|
||||||
device_class=BinarySensorDeviceClass.CONNECTIVITY,
|
device_class=BinarySensorDeviceClass.CONNECTIVITY,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user