Add missing Home Connect chiller doors (#141105)

This commit is contained in:
J. Diego Rodríguez Royo 2025-03-22 14:31:28 +01:00 committed by GitHub
parent 1492c59abe
commit 4479b7b13d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 27 additions and 0 deletions

View File

@ -106,8 +106,26 @@ BINARY_SENSORS = (
key=StatusKey.REFRIGERATION_COMMON_DOOR_CHILLER_COMMON,
boolean_map=REFRIGERATION_DOOR_BOOLEAN_MAP,
device_class=BinarySensorDeviceClass.DOOR,
translation_key="common_chiller_door",
),
HomeConnectBinarySensorEntityDescription(
key=StatusKey.REFRIGERATION_COMMON_DOOR_CHILLER,
boolean_map=REFRIGERATION_DOOR_BOOLEAN_MAP,
device_class=BinarySensorDeviceClass.DOOR,
translation_key="chiller_door",
),
HomeConnectBinarySensorEntityDescription(
key=StatusKey.REFRIGERATION_COMMON_DOOR_CHILLER_LEFT,
boolean_map=REFRIGERATION_DOOR_BOOLEAN_MAP,
device_class=BinarySensorDeviceClass.DOOR,
translation_key="left_chiller_door",
),
HomeConnectBinarySensorEntityDescription(
key=StatusKey.REFRIGERATION_COMMON_DOOR_CHILLER_RIGHT,
boolean_map=REFRIGERATION_DOOR_BOOLEAN_MAP,
device_class=BinarySensorDeviceClass.DOOR,
translation_key="right_chiller_door",
),
HomeConnectBinarySensorEntityDescription(
key=StatusKey.REFRIGERATION_COMMON_DOOR_FLEX_COMPARTMENT,
boolean_map=REFRIGERATION_DOOR_BOOLEAN_MAP,

View File

@ -811,9 +811,18 @@
"bottle_cooler_door": {
"name": "Bottle cooler door"
},
"common_chiller_door": {
"name": "Common chiller door"
},
"chiller_door": {
"name": "Chiller door"
},
"left_chiller_door": {
"name": "Left chiller door"
},
"right_chiller_door": {
"name": "Right chiller door"
},
"flex_compartment_door": {
"name": "Flex compartment door"
},