Fix battery heater in Tessie (#114568)

This commit is contained in:
Brett Adams 2024-04-02 20:23:08 +10:00 committed by GitHub
parent acf2f855fe
commit f36c37a3b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -34,7 +34,7 @@ DESCRIPTIONS: tuple[TessieBinarySensorEntityDescription, ...] = (
is_on=lambda x: x == TessieState.ONLINE, is_on=lambda x: x == TessieState.ONLINE,
), ),
TessieBinarySensorEntityDescription( TessieBinarySensorEntityDescription(
key="charge_state_battery_heater_on", key="climate_state_battery_heater",
device_class=BinarySensorDeviceClass.HEAT, device_class=BinarySensorDeviceClass.HEAT,
entity_category=EntityCategory.DIAGNOSTIC, entity_category=EntityCategory.DIAGNOSTIC,
), ),

View File

@ -252,7 +252,7 @@
"state": { "state": {
"name": "Status" "name": "Status"
}, },
"charge_state_battery_heater_on": { "climate_state_battery_heater": {
"name": "Battery heater" "name": "Battery heater"
}, },
"charge_state_charge_enable_request": { "charge_state_charge_enable_request": {

View File

@ -165,8 +165,8 @@
'platform': 'tessie', 'platform': 'tessie',
'previous_unique_id': None, 'previous_unique_id': None,
'supported_features': 0, 'supported_features': 0,
'translation_key': 'charge_state_battery_heater_on', 'translation_key': 'climate_state_battery_heater',
'unique_id': 'VINVINVIN-charge_state_battery_heater_on', 'unique_id': 'VINVINVIN-climate_state_battery_heater',
'unit_of_measurement': None, 'unit_of_measurement': None,
}) })
# --- # ---