hass-core/tests/components/home_connect/fixtures/status.json
Robert Contreras 85aa32338e
Add Home Connect sensors for fridge door states and alarms (#125490)
* New sensors for Fridge door states and alarms

* Move 2 option entities to binary_sensor, tests

* Change state translations

* Fix stale docstring
2024-09-13 19:31:35 +02:00

20 lines
575 B
JSON

{
"data": {
"status": [
{ "key": "BSH.Common.Status.RemoteControlActive", "value": true },
{ "key": "BSH.Common.Status.RemoteControlStartAllowed", "value": true },
{
"key": "BSH.Common.Status.OperationState",
"value": "BSH.Common.EnumType.OperationState.Ready"
},
{
"key": "BSH.Common.Status.DoorState",
"value": "BSH.Common.EnumType.DoorState.Closed"
},
{
"key": "Refrigeration.Common.Status.Door.Refrigerator",
"value": "BSH.Common.EnumType.DoorState.Open"
}
]
}
}