Add Home Connect entities that weren't added before (#138796)

Added entities that weren't added before
This commit is contained in:
J. Diego Rodríguez Royo 2025-02-18 22:01:13 +01:00 committed by GitHub
parent 141bcae793
commit 6ef401251c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 43 additions and 0 deletions

View File

@ -93,12 +93,24 @@ BINARY_SENSORS = (
key=StatusKey.CONSUMER_PRODUCTS_CLEANING_ROBOT_LOST, key=StatusKey.CONSUMER_PRODUCTS_CLEANING_ROBOT_LOST,
translation_key="lost", translation_key="lost",
), ),
HomeConnectBinarySensorEntityDescription(
key=StatusKey.REFRIGERATION_COMMON_DOOR_BOTTLE_COOLER,
boolean_map=REFRIGERATION_DOOR_BOOLEAN_MAP,
device_class=BinarySensorDeviceClass.DOOR,
translation_key="bottle_cooler_door",
),
HomeConnectBinarySensorEntityDescription( HomeConnectBinarySensorEntityDescription(
key=StatusKey.REFRIGERATION_COMMON_DOOR_CHILLER_COMMON, key=StatusKey.REFRIGERATION_COMMON_DOOR_CHILLER_COMMON,
boolean_map=REFRIGERATION_DOOR_BOOLEAN_MAP, boolean_map=REFRIGERATION_DOOR_BOOLEAN_MAP,
device_class=BinarySensorDeviceClass.DOOR, device_class=BinarySensorDeviceClass.DOOR,
translation_key="chiller_door", translation_key="chiller_door",
), ),
HomeConnectBinarySensorEntityDescription(
key=StatusKey.REFRIGERATION_COMMON_DOOR_FLEX_COMPARTMENT,
boolean_map=REFRIGERATION_DOOR_BOOLEAN_MAP,
device_class=BinarySensorDeviceClass.DOOR,
translation_key="flex_compartment_door",
),
HomeConnectBinarySensorEntityDescription( HomeConnectBinarySensorEntityDescription(
key=StatusKey.REFRIGERATION_COMMON_DOOR_FREEZER, key=StatusKey.REFRIGERATION_COMMON_DOOR_FREEZER,
boolean_map=REFRIGERATION_DOOR_BOOLEAN_MAP, boolean_map=REFRIGERATION_DOOR_BOOLEAN_MAP,
@ -111,6 +123,12 @@ BINARY_SENSORS = (
device_class=BinarySensorDeviceClass.DOOR, device_class=BinarySensorDeviceClass.DOOR,
translation_key="refrigerator_door", translation_key="refrigerator_door",
), ),
HomeConnectBinarySensorEntityDescription(
key=StatusKey.REFRIGERATION_COMMON_DOOR_WINE_COMPARTMENT,
boolean_map=REFRIGERATION_DOOR_BOOLEAN_MAP,
device_class=BinarySensorDeviceClass.DOOR,
translation_key="wine_compartment_door",
),
) )

View File

@ -76,6 +76,16 @@ NUMBERS = (
device_class=NumberDeviceClass.TEMPERATURE, device_class=NumberDeviceClass.TEMPERATURE,
translation_key="wine_compartment_3_setpoint_temperature", translation_key="wine_compartment_3_setpoint_temperature",
), ),
NumberEntityDescription(
key=SettingKey.LAUNDRY_CARE_WASHER_I_DOS_1_BASE_LEVEL,
device_class=NumberDeviceClass.VOLUME,
translation_key="washer_i_dos_1_base_level",
),
NumberEntityDescription(
key=SettingKey.LAUNDRY_CARE_WASHER_I_DOS_2_BASE_LEVEL,
device_class=NumberDeviceClass.VOLUME,
translation_key="washer_i_dos_2_base_level",
),
) )

View File

@ -793,14 +793,23 @@
"lost": { "lost": {
"name": "Lost" "name": "Lost"
}, },
"bottle_cooler_door": {
"name": "Bottle cooler door"
},
"chiller_door": { "chiller_door": {
"name": "Chiller door" "name": "Chiller door"
}, },
"flex_compartment_door": {
"name": "Flex compartment door"
},
"freezer_door": { "freezer_door": {
"name": "Freezer door" "name": "Freezer door"
}, },
"refrigerator_door": { "refrigerator_door": {
"name": "Refrigerator door" "name": "Refrigerator door"
},
"wine_compartment_door": {
"name": "Wine compartment door"
} }
}, },
"light": { "light": {
@ -844,6 +853,12 @@
}, },
"wine_compartment_3_setpoint_temperature": { "wine_compartment_3_setpoint_temperature": {
"name": "Wine compartment 3 temperature" "name": "Wine compartment 3 temperature"
},
"washer_i_dos_1_base_level": {
"name": "i-Dos 1 base level"
},
"washer_i_dos_2_base_level": {
"name": "i-Dos 2 base level"
} }
}, },
"select": { "select": {