mirror of
https://github.com/home-assistant/core.git
synced 2025-07-13 16:27:08 +00:00
Fix missing binary sensor for CoolSelect+ in SmartThings (#143216)
This commit is contained in:
parent
c3037bae39
commit
d3b335f53f
@ -59,10 +59,11 @@ CAPABILITY_TO_SENSORS: dict[
|
|||||||
Category.DOOR: BinarySensorDeviceClass.DOOR,
|
Category.DOOR: BinarySensorDeviceClass.DOOR,
|
||||||
Category.WINDOW: BinarySensorDeviceClass.WINDOW,
|
Category.WINDOW: BinarySensorDeviceClass.WINDOW,
|
||||||
},
|
},
|
||||||
exists_fn=lambda key: key in {"freezer", "cooler"},
|
exists_fn=lambda key: key in {"freezer", "cooler", "cvroom"},
|
||||||
component_translation_key={
|
component_translation_key={
|
||||||
"freezer": "freezer_door",
|
"freezer": "freezer_door",
|
||||||
"cooler": "cooler_door",
|
"cooler": "cooler_door",
|
||||||
|
"cvroom": "cool_select_plus_door",
|
||||||
},
|
},
|
||||||
deprecated_fn=(
|
deprecated_fn=(
|
||||||
lambda status: "fridge_door"
|
lambda status: "fridge_door"
|
||||||
|
@ -48,6 +48,9 @@
|
|||||||
"cooler_door": {
|
"cooler_door": {
|
||||||
"name": "Cooler door"
|
"name": "Cooler door"
|
||||||
},
|
},
|
||||||
|
"cool_select_plus_door": {
|
||||||
|
"name": "CoolSelect+ door"
|
||||||
|
},
|
||||||
"remote_control": {
|
"remote_control": {
|
||||||
"name": "Remote control"
|
"name": "Remote control"
|
||||||
},
|
},
|
||||||
|
@ -107,6 +107,7 @@ def mock_smartthings() -> Generator[AsyncMock]:
|
|||||||
"centralite",
|
"centralite",
|
||||||
"da_ref_normal_000001",
|
"da_ref_normal_000001",
|
||||||
"da_ref_normal_01011",
|
"da_ref_normal_01011",
|
||||||
|
"da_ref_normal_01001",
|
||||||
"vd_network_audio_002s",
|
"vd_network_audio_002s",
|
||||||
"vd_sensor_light_2023",
|
"vd_sensor_light_2023",
|
||||||
"iphone",
|
"iphone",
|
||||||
|
@ -0,0 +1,929 @@
|
|||||||
|
{
|
||||||
|
"components": {
|
||||||
|
"pantry-01": {
|
||||||
|
"samsungce.foodDefrost": {
|
||||||
|
"supportedOptions": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"foodType": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"weight": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"operationTime": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"remainingTime": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.fridgePantryInfo": {
|
||||||
|
"name": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.disabledCapabilities": {
|
||||||
|
"disabledCapabilities": {
|
||||||
|
"value": ["samsungce.meatAging", "samsungce.foodDefrost"],
|
||||||
|
"timestamp": "2022-02-07T10:54:05.580Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.meatAging": {
|
||||||
|
"zoneInfo": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"supportedMeatTypes": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"supportedAgingMethods": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"status": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.fridgePantryMode": {
|
||||||
|
"mode": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"supportedModes": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"icemaker": {
|
||||||
|
"custom.disabledCapabilities": {
|
||||||
|
"disabledCapabilities": {
|
||||||
|
"value": [],
|
||||||
|
"timestamp": "2022-02-07T10:54:05.580Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"switch": {
|
||||||
|
"switch": {
|
||||||
|
"value": "on",
|
||||||
|
"timestamp": "2025-02-07T12:01:52.528Z"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"scale-10": {
|
||||||
|
"samsungce.connectionState": {
|
||||||
|
"connectionState": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.disabledCapabilities": {
|
||||||
|
"disabledCapabilities": {
|
||||||
|
"value": [],
|
||||||
|
"timestamp": "2022-02-07T10:54:05.580Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.weightMeasurement": {
|
||||||
|
"weight": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.scaleSettings": {
|
||||||
|
"enabled": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.weightMeasurementCalibration": {}
|
||||||
|
},
|
||||||
|
"scale-11": {
|
||||||
|
"custom.disabledCapabilities": {
|
||||||
|
"disabledCapabilities": {
|
||||||
|
"value": [],
|
||||||
|
"timestamp": "2022-02-07T10:54:05.580Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.weightMeasurement": {
|
||||||
|
"weight": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"camera-01": {
|
||||||
|
"custom.disabledCapabilities": {
|
||||||
|
"disabledCapabilities": {
|
||||||
|
"value": ["switch"],
|
||||||
|
"timestamp": "2023-12-17T11:19:18.845Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"switch": {
|
||||||
|
"switch": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"cooler": {
|
||||||
|
"contactSensor": {
|
||||||
|
"contact": {
|
||||||
|
"value": "closed",
|
||||||
|
"timestamp": "2025-02-09T00:23:41.655Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.unavailableCapabilities": {
|
||||||
|
"unavailableCommands": {
|
||||||
|
"value": [],
|
||||||
|
"timestamp": "2024-11-06T12:35:50.411Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.disabledCapabilities": {
|
||||||
|
"disabledCapabilities": {
|
||||||
|
"value": [],
|
||||||
|
"timestamp": "2024-06-17T06:16:33.918Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"temperatureMeasurement": {
|
||||||
|
"temperatureRange": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"temperature": {
|
||||||
|
"value": 37,
|
||||||
|
"unit": "F",
|
||||||
|
"timestamp": "2025-02-01T19:39:00.493Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.thermostatSetpointControl": {
|
||||||
|
"minimumSetpoint": {
|
||||||
|
"value": 34,
|
||||||
|
"unit": "F",
|
||||||
|
"timestamp": "2025-02-01T19:39:00.493Z"
|
||||||
|
},
|
||||||
|
"maximumSetpoint": {
|
||||||
|
"value": 44,
|
||||||
|
"unit": "F",
|
||||||
|
"timestamp": "2025-02-01T19:39:00.493Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"thermostatCoolingSetpoint": {
|
||||||
|
"coolingSetpointRange": {
|
||||||
|
"value": {
|
||||||
|
"minimum": 34,
|
||||||
|
"maximum": 44,
|
||||||
|
"step": 1
|
||||||
|
},
|
||||||
|
"unit": "F",
|
||||||
|
"timestamp": "2025-02-01T19:39:00.493Z"
|
||||||
|
},
|
||||||
|
"coolingSetpoint": {
|
||||||
|
"value": 37,
|
||||||
|
"unit": "F",
|
||||||
|
"timestamp": "2025-02-01T19:39:00.493Z"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"freezer": {
|
||||||
|
"contactSensor": {
|
||||||
|
"contact": {
|
||||||
|
"value": "closed",
|
||||||
|
"timestamp": "2025-02-09T00:00:44.267Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.unavailableCapabilities": {
|
||||||
|
"unavailableCommands": {
|
||||||
|
"value": [],
|
||||||
|
"timestamp": "2024-11-06T12:35:50.411Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.disabledCapabilities": {
|
||||||
|
"disabledCapabilities": {
|
||||||
|
"value": ["samsungce.freezerConvertMode"],
|
||||||
|
"timestamp": "2024-11-06T09:00:29.743Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"temperatureMeasurement": {
|
||||||
|
"temperatureRange": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"temperature": {
|
||||||
|
"value": 0,
|
||||||
|
"unit": "F",
|
||||||
|
"timestamp": "2025-02-01T19:39:00.493Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.thermostatSetpointControl": {
|
||||||
|
"minimumSetpoint": {
|
||||||
|
"value": -8,
|
||||||
|
"unit": "F",
|
||||||
|
"timestamp": "2025-02-01T19:39:00.493Z"
|
||||||
|
},
|
||||||
|
"maximumSetpoint": {
|
||||||
|
"value": 5,
|
||||||
|
"unit": "F",
|
||||||
|
"timestamp": "2025-02-01T19:39:00.493Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.freezerConvertMode": {
|
||||||
|
"supportedFreezerConvertModes": {
|
||||||
|
"value": [],
|
||||||
|
"timestamp": "2025-02-01T19:39:00.448Z"
|
||||||
|
},
|
||||||
|
"freezerConvertMode": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"thermostatCoolingSetpoint": {
|
||||||
|
"coolingSetpointRange": {
|
||||||
|
"value": {
|
||||||
|
"minimum": -8,
|
||||||
|
"maximum": 5,
|
||||||
|
"step": 1
|
||||||
|
},
|
||||||
|
"unit": "F",
|
||||||
|
"timestamp": "2025-02-01T19:39:00.493Z"
|
||||||
|
},
|
||||||
|
"coolingSetpoint": {
|
||||||
|
"value": 0,
|
||||||
|
"unit": "F",
|
||||||
|
"timestamp": "2025-02-01T19:39:00.493Z"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"main": {
|
||||||
|
"contactSensor": {
|
||||||
|
"contact": {
|
||||||
|
"value": "closed",
|
||||||
|
"timestamp": "2025-02-09T00:23:41.655Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.viewInside": {
|
||||||
|
"supportedFocusAreas": {
|
||||||
|
"value": ["mainShelves"],
|
||||||
|
"timestamp": "2025-02-01T19:39:00.946Z"
|
||||||
|
},
|
||||||
|
"contents": {
|
||||||
|
"value": [
|
||||||
|
{
|
||||||
|
"fileId": "d3e1f875-f8b3-a031-737b-366eaa227773",
|
||||||
|
"mimeType": "image/jpeg",
|
||||||
|
"expiredTime": "2025-01-20T16:17:04Z",
|
||||||
|
"focusArea": "mainShelves"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fileId": "9fccb6b4-e71f-6c7f-9935-f6082bb6ccfe",
|
||||||
|
"mimeType": "image/jpeg",
|
||||||
|
"expiredTime": "2025-01-20T16:17:04Z",
|
||||||
|
"focusArea": "mainShelves"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fileId": "20b57a4d-b7fc-17fc-3a03-0fb84fb4efab",
|
||||||
|
"mimeType": "image/jpeg",
|
||||||
|
"expiredTime": "2025-01-20T16:17:05Z",
|
||||||
|
"focusArea": "mainShelves"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"timestamp": "2025-01-20T16:07:05.423Z"
|
||||||
|
},
|
||||||
|
"lastUpdatedTime": {
|
||||||
|
"value": "2025-02-07T12:01:52Z",
|
||||||
|
"timestamp": "2025-02-07T12:01:52.585Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.fridgeFoodList": {
|
||||||
|
"outOfSyncChanges": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"refreshResult": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.deviceIdentification": {
|
||||||
|
"micomAssayCode": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"modelName": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"serialNumber": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"serialNumberExtra": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"modelClassificationCode": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"description": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"releaseYear": {
|
||||||
|
"value": 19,
|
||||||
|
"timestamp": "2024-11-06T09:00:29.743Z"
|
||||||
|
},
|
||||||
|
"binaryId": {
|
||||||
|
"value": "24K_REF_LCD_FHUB9.0",
|
||||||
|
"timestamp": "2025-02-07T12:01:53.067Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.quickControl": {
|
||||||
|
"version": {
|
||||||
|
"value": "1.0",
|
||||||
|
"timestamp": "2025-02-01T19:39:01.848Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.fridgeMode": {
|
||||||
|
"fridgeModeValue": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"fridgeMode": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"supportedFridgeModes": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"ocf": {
|
||||||
|
"st": {
|
||||||
|
"value": "2024-11-08T11:56:59Z",
|
||||||
|
"timestamp": "2025-01-02T12:37:43.756Z"
|
||||||
|
},
|
||||||
|
"mndt": {
|
||||||
|
"value": "",
|
||||||
|
"timestamp": "2025-01-02T12:37:43.756Z"
|
||||||
|
},
|
||||||
|
"mnfv": {
|
||||||
|
"value": "20240616.213423",
|
||||||
|
"timestamp": "2025-01-02T12:37:43.756Z"
|
||||||
|
},
|
||||||
|
"mnhw": {
|
||||||
|
"value": "",
|
||||||
|
"timestamp": "2025-01-02T12:37:43.756Z"
|
||||||
|
},
|
||||||
|
"di": {
|
||||||
|
"value": "7d3feb98-8a36-4351-c362-5e21ad3a78dd",
|
||||||
|
"timestamp": "2025-01-02T12:37:43.756Z"
|
||||||
|
},
|
||||||
|
"mnsl": {
|
||||||
|
"value": "",
|
||||||
|
"timestamp": "2025-01-02T12:37:43.756Z"
|
||||||
|
},
|
||||||
|
"dmv": {
|
||||||
|
"value": "res.1.1.0,sh.1.1.0",
|
||||||
|
"timestamp": "2025-01-02T12:37:43.756Z"
|
||||||
|
},
|
||||||
|
"n": {
|
||||||
|
"value": "Family Hub",
|
||||||
|
"timestamp": "2025-01-02T12:37:43.756Z"
|
||||||
|
},
|
||||||
|
"mnmo": {
|
||||||
|
"value": "24K_REF_LCD_FHUB9.0|00113141|0002034e051324200103000000000000",
|
||||||
|
"timestamp": "2025-01-02T12:37:43.756Z"
|
||||||
|
},
|
||||||
|
"vid": {
|
||||||
|
"value": "DA-REF-NORMAL-01001",
|
||||||
|
"timestamp": "2025-01-02T12:37:43.756Z"
|
||||||
|
},
|
||||||
|
"mnmn": {
|
||||||
|
"value": "Samsung Electronics",
|
||||||
|
"timestamp": "2025-01-02T12:37:43.756Z"
|
||||||
|
},
|
||||||
|
"mnml": {
|
||||||
|
"value": "",
|
||||||
|
"timestamp": "2025-01-02T12:37:43.756Z"
|
||||||
|
},
|
||||||
|
"mnpv": {
|
||||||
|
"value": "7.0",
|
||||||
|
"timestamp": "2025-01-02T12:37:43.756Z"
|
||||||
|
},
|
||||||
|
"mnos": {
|
||||||
|
"value": "Tizen",
|
||||||
|
"timestamp": "2025-01-02T12:37:43.756Z"
|
||||||
|
},
|
||||||
|
"pi": {
|
||||||
|
"value": "7d3feb98-8a36-4351-c362-5e21ad3a78dd",
|
||||||
|
"timestamp": "2025-01-02T12:37:43.756Z"
|
||||||
|
},
|
||||||
|
"icv": {
|
||||||
|
"value": "core.1.1.0",
|
||||||
|
"timestamp": "2025-01-02T12:37:43.756Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.fridgeVacationMode": {
|
||||||
|
"vacationMode": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.disabledCapabilities": {
|
||||||
|
"disabledCapabilities": {
|
||||||
|
"value": [
|
||||||
|
"thermostatCoolingSetpoint",
|
||||||
|
"temperatureMeasurement",
|
||||||
|
"custom.fridgeMode",
|
||||||
|
"custom.deviceReportStateConfiguration",
|
||||||
|
"samsungce.fridgeFoodList",
|
||||||
|
"samsungce.runestoneHomeContext",
|
||||||
|
"demandResponseLoadControl",
|
||||||
|
"samsungce.fridgeVacationMode",
|
||||||
|
"samsungce.sabbathMode"
|
||||||
|
],
|
||||||
|
"timestamp": "2025-02-08T23:57:45.739Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.driverVersion": {
|
||||||
|
"versionNumber": {
|
||||||
|
"value": 24090102,
|
||||||
|
"timestamp": "2024-11-06T09:00:29.743Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sec.diagnosticsInformation": {
|
||||||
|
"logType": {
|
||||||
|
"value": ["errCode", "dump"],
|
||||||
|
"timestamp": "2025-02-01T19:39:00.523Z"
|
||||||
|
},
|
||||||
|
"endpoint": {
|
||||||
|
"value": "SSM",
|
||||||
|
"timestamp": "2025-02-01T19:39:00.523Z"
|
||||||
|
},
|
||||||
|
"minVersion": {
|
||||||
|
"value": "1.0",
|
||||||
|
"timestamp": "2025-02-01T19:39:00.523Z"
|
||||||
|
},
|
||||||
|
"signinPermission": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"setupId": {
|
||||||
|
"value": "500",
|
||||||
|
"timestamp": "2025-02-01T19:39:00.523Z"
|
||||||
|
},
|
||||||
|
"protocolType": {
|
||||||
|
"value": "wifi_https",
|
||||||
|
"timestamp": "2025-02-01T19:39:00.523Z"
|
||||||
|
},
|
||||||
|
"tsId": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"mnId": {
|
||||||
|
"value": "0AJT",
|
||||||
|
"timestamp": "2025-02-01T19:39:00.523Z"
|
||||||
|
},
|
||||||
|
"dumpType": {
|
||||||
|
"value": "file",
|
||||||
|
"timestamp": "2025-02-01T19:39:00.523Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"temperatureMeasurement": {
|
||||||
|
"temperatureRange": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"temperature": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.deviceReportStateConfiguration": {
|
||||||
|
"reportStateRealtimePeriod": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"reportStateRealtime": {
|
||||||
|
"value": {
|
||||||
|
"state": "disabled"
|
||||||
|
},
|
||||||
|
"timestamp": "2025-02-01T19:39:00.345Z"
|
||||||
|
},
|
||||||
|
"reportStatePeriod": {
|
||||||
|
"value": "enabled",
|
||||||
|
"timestamp": "2025-02-01T19:39:00.345Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"thermostatCoolingSetpoint": {
|
||||||
|
"coolingSetpointRange": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"coolingSetpoint": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.disabledComponents": {
|
||||||
|
"disabledComponents": {
|
||||||
|
"value": [
|
||||||
|
"icemaker-02",
|
||||||
|
"icemaker-03",
|
||||||
|
"pantry-01",
|
||||||
|
"camera-01",
|
||||||
|
"scale-10",
|
||||||
|
"scale-11"
|
||||||
|
],
|
||||||
|
"timestamp": "2025-02-07T12:01:52.638Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"demandResponseLoadControl": {
|
||||||
|
"drlcStatus": {
|
||||||
|
"value": {
|
||||||
|
"drlcType": 1,
|
||||||
|
"drlcLevel": 0,
|
||||||
|
"duration": 0,
|
||||||
|
"override": false
|
||||||
|
},
|
||||||
|
"timestamp": "2025-02-01T19:38:59.899Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.sabbathMode": {
|
||||||
|
"supportedActions": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"status": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"powerConsumptionReport": {
|
||||||
|
"powerConsumption": {
|
||||||
|
"value": {
|
||||||
|
"energy": 4381422,
|
||||||
|
"deltaEnergy": 27,
|
||||||
|
"power": 144,
|
||||||
|
"powerEnergy": 27.01890500307083,
|
||||||
|
"persistedEnergy": 0,
|
||||||
|
"energySaved": 0,
|
||||||
|
"start": "2025-02-09T00:13:39Z",
|
||||||
|
"end": "2025-02-09T00:25:23Z"
|
||||||
|
},
|
||||||
|
"timestamp": "2025-02-09T00:25:23.843Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"refresh": {},
|
||||||
|
"samsungce.runestoneHomeContext": {
|
||||||
|
"supportedContexts": {
|
||||||
|
"value": [
|
||||||
|
{
|
||||||
|
"context": "HOME_IN",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "ASLEEP",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "AWAKE",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "COOKING",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "FINISH_COOKING",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "EATING",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "FINISH_EATING",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "DOING_LAUNDRY",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "FINISH_DOING_LAUNDRY",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "CLEANING_HOUSE",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "FINISH_CLEANING_HOUSE",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "MUSIC_LISTENING",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "FINISH_MUSIC_LISTENING",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "AIR_CONDITIONING",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "FINISH_AIR_CONDITIONING",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "WASHING_DISHES",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "FINISH_WASHING_DISHES",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "CARING_CLOTHING",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "FINISH_CARING_CLOTHING",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "WATCHING_TV",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "FINISH_WATCHING_TV",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "BEFORE_BEDTIME",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "BEFORE_COOKING",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "BEFORE_HOME_OUT",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "ORDERING_DELIVERY_FOOD",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "FINISH_ORDERING_DELIVERY_FOOD",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "ONLINE_GROCERY_SHOPPING",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"context": "FINISH_ONLINE_GROCERY_SHOPPING",
|
||||||
|
"place": "HOME",
|
||||||
|
"startTime": "99:99",
|
||||||
|
"endTime": "99:99"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"timestamp": "2025-02-01T19:39:02.150Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"execute": {
|
||||||
|
"data": {
|
||||||
|
"value": {
|
||||||
|
"payload": {
|
||||||
|
"rt": ["x.com.samsung.da.fridge"],
|
||||||
|
"if": ["oic.if.a"],
|
||||||
|
"x.com.samsung.da.rapidFridge": "Off",
|
||||||
|
"x.com.samsung.da.rapidFreezing": "Off"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"data": {
|
||||||
|
"href": "/refrigeration/vs/0"
|
||||||
|
},
|
||||||
|
"timestamp": "2024-03-26T09:06:17.169Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sec.wifiConfiguration": {
|
||||||
|
"autoReconnection": {
|
||||||
|
"value": true,
|
||||||
|
"timestamp": "2025-02-01T19:39:01.951Z"
|
||||||
|
},
|
||||||
|
"minVersion": {
|
||||||
|
"value": "1.0",
|
||||||
|
"timestamp": "2025-02-01T19:39:01.951Z"
|
||||||
|
},
|
||||||
|
"supportedWiFiFreq": {
|
||||||
|
"value": ["2.4G", "5G"],
|
||||||
|
"timestamp": "2025-02-01T19:39:01.951Z"
|
||||||
|
},
|
||||||
|
"supportedAuthType": {
|
||||||
|
"value": ["OPEN", "WEP", "WPA-PSK", "WPA2-PSK"],
|
||||||
|
"timestamp": "2025-02-01T19:39:01.951Z"
|
||||||
|
},
|
||||||
|
"protocolType": {
|
||||||
|
"value": ["helper_hotspot"],
|
||||||
|
"timestamp": "2025-02-01T19:39:01.951Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"refrigeration": {
|
||||||
|
"defrost": {
|
||||||
|
"value": "off",
|
||||||
|
"timestamp": "2025-02-01T19:38:59.276Z"
|
||||||
|
},
|
||||||
|
"rapidCooling": {
|
||||||
|
"value": "off",
|
||||||
|
"timestamp": "2025-02-01T19:39:00.497Z"
|
||||||
|
},
|
||||||
|
"rapidFreezing": {
|
||||||
|
"value": "off",
|
||||||
|
"timestamp": "2025-02-01T19:39:00.497Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.powerCool": {
|
||||||
|
"activated": {
|
||||||
|
"value": false,
|
||||||
|
"timestamp": "2025-02-01T19:39:00.497Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.energyType": {
|
||||||
|
"energyType": {
|
||||||
|
"value": "2.0",
|
||||||
|
"timestamp": "2022-02-07T10:54:05.580Z"
|
||||||
|
},
|
||||||
|
"energySavingSupport": {
|
||||||
|
"value": false,
|
||||||
|
"timestamp": "2022-02-07T10:57:35.490Z"
|
||||||
|
},
|
||||||
|
"drMaxDuration": {
|
||||||
|
"value": 1440,
|
||||||
|
"unit": "min",
|
||||||
|
"timestamp": "2022-02-07T11:50:40.228Z"
|
||||||
|
},
|
||||||
|
"energySavingLevel": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"energySavingInfo": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"supportedEnergySavingLevels": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"energySavingOperation": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"notificationTemplateID": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"energySavingOperationSupport": {
|
||||||
|
"value": false,
|
||||||
|
"timestamp": "2022-02-07T11:50:40.228Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.softwareUpdate": {
|
||||||
|
"targetModule": {
|
||||||
|
"value": {},
|
||||||
|
"timestamp": "2025-02-01T19:39:00.200Z"
|
||||||
|
},
|
||||||
|
"otnDUID": {
|
||||||
|
"value": "2DCEZFTFQZPMO",
|
||||||
|
"timestamp": "2025-02-01T19:39:00.523Z"
|
||||||
|
},
|
||||||
|
"lastUpdatedDate": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"availableModules": {
|
||||||
|
"value": [],
|
||||||
|
"timestamp": "2025-02-01T19:39:00.523Z"
|
||||||
|
},
|
||||||
|
"newVersionAvailable": {
|
||||||
|
"value": false,
|
||||||
|
"timestamp": "2025-02-01T19:39:00.200Z"
|
||||||
|
},
|
||||||
|
"operatingState": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"progress": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.powerFreeze": {
|
||||||
|
"activated": {
|
||||||
|
"value": false,
|
||||||
|
"timestamp": "2025-02-01T19:39:00.497Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.waterFilter": {
|
||||||
|
"waterFilterUsageStep": {
|
||||||
|
"value": 1,
|
||||||
|
"timestamp": "2025-02-01T19:38:59.973Z"
|
||||||
|
},
|
||||||
|
"waterFilterResetType": {
|
||||||
|
"value": ["replaceable"],
|
||||||
|
"timestamp": "2025-02-01T19:38:59.973Z"
|
||||||
|
},
|
||||||
|
"waterFilterCapacity": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"waterFilterLastResetDate": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"waterFilterUsage": {
|
||||||
|
"value": 52,
|
||||||
|
"timestamp": "2025-02-08T05:06:45.769Z"
|
||||||
|
},
|
||||||
|
"waterFilterStatus": {
|
||||||
|
"value": "normal",
|
||||||
|
"timestamp": "2025-02-01T19:38:59.973Z"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"cvroom": {
|
||||||
|
"custom.fridgeMode": {
|
||||||
|
"fridgeModeValue": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"fridgeMode": {
|
||||||
|
"value": "CV_FDR_DELI",
|
||||||
|
"timestamp": "2025-02-01T19:39:00.448Z"
|
||||||
|
},
|
||||||
|
"supportedFridgeModes": {
|
||||||
|
"value": [
|
||||||
|
"CV_FDR_WINE",
|
||||||
|
"CV_FDR_DELI",
|
||||||
|
"CV_FDR_BEVERAGE",
|
||||||
|
"CV_FDR_MEAT"
|
||||||
|
],
|
||||||
|
"timestamp": "2025-02-01T19:39:00.448Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"contactSensor": {
|
||||||
|
"contact": {
|
||||||
|
"value": "closed",
|
||||||
|
"timestamp": "2025-02-08T23:22:04.631Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.disabledCapabilities": {
|
||||||
|
"disabledCapabilities": {
|
||||||
|
"value": [],
|
||||||
|
"timestamp": "2021-07-27T01:19:43.145Z"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"icemaker-02": {
|
||||||
|
"custom.disabledCapabilities": {
|
||||||
|
"disabledCapabilities": {
|
||||||
|
"value": [],
|
||||||
|
"timestamp": "2022-07-28T18:47:07.039Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"switch": {
|
||||||
|
"switch": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"icemaker-03": {
|
||||||
|
"custom.disabledCapabilities": {
|
||||||
|
"disabledCapabilities": {
|
||||||
|
"value": [],
|
||||||
|
"timestamp": "2023-12-15T01:05:09.803Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"switch": {
|
||||||
|
"switch": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,433 @@
|
|||||||
|
{
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"deviceId": "7d3feb98-8a36-4351-c362-5e21ad3a78dd",
|
||||||
|
"name": "Family Hub",
|
||||||
|
"label": "Refrigerator",
|
||||||
|
"manufacturerName": "Samsung Electronics",
|
||||||
|
"presentationId": "DA-REF-NORMAL-01001",
|
||||||
|
"deviceManufacturerCode": "Samsung Electronics",
|
||||||
|
"locationId": "2487472a-06c4-4bce-8f4c-700c5f8644f8",
|
||||||
|
"ownerId": "b603d7e8-6066-4e10-8102-afa752a63816",
|
||||||
|
"roomId": "acaa060a-7c19-4579-8a4a-5ad891a2f0c1",
|
||||||
|
"deviceTypeName": "Samsung OCF Refrigerator",
|
||||||
|
"components": [
|
||||||
|
{
|
||||||
|
"id": "main",
|
||||||
|
"label": "main",
|
||||||
|
"capabilities": [
|
||||||
|
{
|
||||||
|
"id": "contactSensor",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "execute",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "ocf",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "powerConsumptionReport",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "demandResponseLoadControl",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "refresh",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "refrigeration",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "temperatureMeasurement",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "thermostatCoolingSetpoint",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.deviceReportStateConfiguration",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.energyType",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.fridgeMode",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.disabledCapabilities",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.disabledComponents",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.waterFilter",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.fridgeFoodList",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.softwareUpdate",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.deviceIdentification",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.driverVersion",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.fridgeVacationMode",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.powerCool",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.powerFreeze",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.sabbathMode",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.viewInside",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.runestoneHomeContext",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.quickControl",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "sec.diagnosticsInformation",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "sec.wifiConfiguration",
|
||||||
|
"version": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
{
|
||||||
|
"name": "Refrigerator",
|
||||||
|
"categoryType": "manufacturer"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "freezer",
|
||||||
|
"label": "freezer",
|
||||||
|
"capabilities": [
|
||||||
|
{
|
||||||
|
"id": "contactSensor",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "temperatureMeasurement",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "thermostatCoolingSetpoint",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.disabledCapabilities",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.thermostatSetpointControl",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.freezerConvertMode",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.unavailableCapabilities",
|
||||||
|
"version": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
{
|
||||||
|
"name": "Other",
|
||||||
|
"categoryType": "manufacturer"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "cooler",
|
||||||
|
"label": "cooler",
|
||||||
|
"capabilities": [
|
||||||
|
{
|
||||||
|
"id": "contactSensor",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "temperatureMeasurement",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "thermostatCoolingSetpoint",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.disabledCapabilities",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.thermostatSetpointControl",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.unavailableCapabilities",
|
||||||
|
"version": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
{
|
||||||
|
"name": "Other",
|
||||||
|
"categoryType": "manufacturer"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "cvroom",
|
||||||
|
"label": "cvroom",
|
||||||
|
"capabilities": [
|
||||||
|
{
|
||||||
|
"id": "contactSensor",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.disabledCapabilities",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.fridgeMode",
|
||||||
|
"version": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
{
|
||||||
|
"name": "Other",
|
||||||
|
"categoryType": "manufacturer"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "icemaker",
|
||||||
|
"label": "icemaker",
|
||||||
|
"capabilities": [
|
||||||
|
{
|
||||||
|
"id": "switch",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.disabledCapabilities",
|
||||||
|
"version": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
{
|
||||||
|
"name": "Other",
|
||||||
|
"categoryType": "manufacturer"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "icemaker-02",
|
||||||
|
"label": "icemaker-02",
|
||||||
|
"capabilities": [
|
||||||
|
{
|
||||||
|
"id": "switch",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.disabledCapabilities",
|
||||||
|
"version": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
{
|
||||||
|
"name": "Other",
|
||||||
|
"categoryType": "manufacturer"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "icemaker-03",
|
||||||
|
"label": "icemaker-03",
|
||||||
|
"capabilities": [
|
||||||
|
{
|
||||||
|
"id": "switch",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.disabledCapabilities",
|
||||||
|
"version": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
{
|
||||||
|
"name": "Other",
|
||||||
|
"categoryType": "manufacturer"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "scale-10",
|
||||||
|
"label": "scale-10",
|
||||||
|
"capabilities": [
|
||||||
|
{
|
||||||
|
"id": "samsungce.weightMeasurement",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.weightMeasurementCalibration",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.connectionState",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.scaleSettings",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.disabledCapabilities",
|
||||||
|
"version": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
{
|
||||||
|
"name": "Other",
|
||||||
|
"categoryType": "manufacturer"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "scale-11",
|
||||||
|
"label": "scale-11",
|
||||||
|
"capabilities": [
|
||||||
|
{
|
||||||
|
"id": "samsungce.weightMeasurement",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.disabledCapabilities",
|
||||||
|
"version": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
{
|
||||||
|
"name": "Other",
|
||||||
|
"categoryType": "manufacturer"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "pantry-01",
|
||||||
|
"label": "pantry-01",
|
||||||
|
"capabilities": [
|
||||||
|
{
|
||||||
|
"id": "samsungce.fridgePantryInfo",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.fridgePantryMode",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.meatAging",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.foodDefrost",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.disabledCapabilities",
|
||||||
|
"version": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
{
|
||||||
|
"name": "Other",
|
||||||
|
"categoryType": "manufacturer"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "camera-01",
|
||||||
|
"label": "camera-01",
|
||||||
|
"capabilities": [
|
||||||
|
{
|
||||||
|
"id": "switch",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.disabledCapabilities",
|
||||||
|
"version": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
{
|
||||||
|
"name": "Other",
|
||||||
|
"categoryType": "manufacturer"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"createTime": "2021-07-27T01:19:42.051Z",
|
||||||
|
"profile": {
|
||||||
|
"id": "4c654f1b-8ef4-35b0-920e-c12568554213"
|
||||||
|
},
|
||||||
|
"ocf": {
|
||||||
|
"ocfDeviceType": "oic.d.refrigerator",
|
||||||
|
"name": "Family Hub",
|
||||||
|
"specVersion": "core.1.1.0",
|
||||||
|
"verticalDomainSpecVersion": "res.1.1.0,sh.1.1.0",
|
||||||
|
"manufacturerName": "Samsung Electronics",
|
||||||
|
"modelNumber": "24K_REF_LCD_FHUB9.0|00113141|0002034e051324200103000000000000",
|
||||||
|
"platformVersion": "7.0",
|
||||||
|
"platformOS": "Tizen",
|
||||||
|
"hwVersion": "",
|
||||||
|
"firmwareVersion": "20240616.213423",
|
||||||
|
"vendorId": "DA-REF-NORMAL-01001",
|
||||||
|
"vendorResourceClientServerVersion": "4.0.22",
|
||||||
|
"locale": "",
|
||||||
|
"lastSignupTime": "2021-07-27T01:19:40.244392Z",
|
||||||
|
"transferCandidate": false,
|
||||||
|
"additionalAuthCodeRequired": false
|
||||||
|
},
|
||||||
|
"type": "OCF",
|
||||||
|
"restrictionTier": 0,
|
||||||
|
"allowed": [],
|
||||||
|
"executionContext": "CLOUD"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_links": {}
|
||||||
|
}
|
@ -761,6 +761,150 @@
|
|||||||
'state': 'off',
|
'state': 'off',
|
||||||
})
|
})
|
||||||
# ---
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01001][binary_sensor.refrigerator_cooler_door-entry]
|
||||||
|
EntityRegistryEntrySnapshot({
|
||||||
|
'aliases': set({
|
||||||
|
}),
|
||||||
|
'area_id': None,
|
||||||
|
'capabilities': None,
|
||||||
|
'config_entry_id': <ANY>,
|
||||||
|
'config_subentry_id': <ANY>,
|
||||||
|
'device_class': None,
|
||||||
|
'device_id': <ANY>,
|
||||||
|
'disabled_by': None,
|
||||||
|
'domain': 'binary_sensor',
|
||||||
|
'entity_category': None,
|
||||||
|
'entity_id': 'binary_sensor.refrigerator_cooler_door',
|
||||||
|
'has_entity_name': True,
|
||||||
|
'hidden_by': None,
|
||||||
|
'icon': None,
|
||||||
|
'id': <ANY>,
|
||||||
|
'labels': set({
|
||||||
|
}),
|
||||||
|
'name': None,
|
||||||
|
'options': dict({
|
||||||
|
}),
|
||||||
|
'original_device_class': <BinarySensorDeviceClass.DOOR: 'door'>,
|
||||||
|
'original_icon': None,
|
||||||
|
'original_name': 'Cooler door',
|
||||||
|
'platform': 'smartthings',
|
||||||
|
'previous_unique_id': None,
|
||||||
|
'supported_features': 0,
|
||||||
|
'translation_key': 'cooler_door',
|
||||||
|
'unique_id': '7d3feb98-8a36-4351-c362-5e21ad3a78dd_cooler_contactSensor_contact_contact',
|
||||||
|
'unit_of_measurement': None,
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01001][binary_sensor.refrigerator_cooler_door-state]
|
||||||
|
StateSnapshot({
|
||||||
|
'attributes': ReadOnlyDict({
|
||||||
|
'device_class': 'door',
|
||||||
|
'friendly_name': 'Refrigerator Cooler door',
|
||||||
|
}),
|
||||||
|
'context': <ANY>,
|
||||||
|
'entity_id': 'binary_sensor.refrigerator_cooler_door',
|
||||||
|
'last_changed': <ANY>,
|
||||||
|
'last_reported': <ANY>,
|
||||||
|
'last_updated': <ANY>,
|
||||||
|
'state': 'off',
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01001][binary_sensor.refrigerator_coolselect_door-entry]
|
||||||
|
EntityRegistryEntrySnapshot({
|
||||||
|
'aliases': set({
|
||||||
|
}),
|
||||||
|
'area_id': None,
|
||||||
|
'capabilities': None,
|
||||||
|
'config_entry_id': <ANY>,
|
||||||
|
'config_subentry_id': <ANY>,
|
||||||
|
'device_class': None,
|
||||||
|
'device_id': <ANY>,
|
||||||
|
'disabled_by': None,
|
||||||
|
'domain': 'binary_sensor',
|
||||||
|
'entity_category': None,
|
||||||
|
'entity_id': 'binary_sensor.refrigerator_coolselect_door',
|
||||||
|
'has_entity_name': True,
|
||||||
|
'hidden_by': None,
|
||||||
|
'icon': None,
|
||||||
|
'id': <ANY>,
|
||||||
|
'labels': set({
|
||||||
|
}),
|
||||||
|
'name': None,
|
||||||
|
'options': dict({
|
||||||
|
}),
|
||||||
|
'original_device_class': <BinarySensorDeviceClass.DOOR: 'door'>,
|
||||||
|
'original_icon': None,
|
||||||
|
'original_name': 'CoolSelect+ door',
|
||||||
|
'platform': 'smartthings',
|
||||||
|
'previous_unique_id': None,
|
||||||
|
'supported_features': 0,
|
||||||
|
'translation_key': 'cool_select_plus_door',
|
||||||
|
'unique_id': '7d3feb98-8a36-4351-c362-5e21ad3a78dd_cvroom_contactSensor_contact_contact',
|
||||||
|
'unit_of_measurement': None,
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01001][binary_sensor.refrigerator_coolselect_door-state]
|
||||||
|
StateSnapshot({
|
||||||
|
'attributes': ReadOnlyDict({
|
||||||
|
'device_class': 'door',
|
||||||
|
'friendly_name': 'Refrigerator CoolSelect+ door',
|
||||||
|
}),
|
||||||
|
'context': <ANY>,
|
||||||
|
'entity_id': 'binary_sensor.refrigerator_coolselect_door',
|
||||||
|
'last_changed': <ANY>,
|
||||||
|
'last_reported': <ANY>,
|
||||||
|
'last_updated': <ANY>,
|
||||||
|
'state': 'off',
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01001][binary_sensor.refrigerator_freezer_door-entry]
|
||||||
|
EntityRegistryEntrySnapshot({
|
||||||
|
'aliases': set({
|
||||||
|
}),
|
||||||
|
'area_id': None,
|
||||||
|
'capabilities': None,
|
||||||
|
'config_entry_id': <ANY>,
|
||||||
|
'config_subentry_id': <ANY>,
|
||||||
|
'device_class': None,
|
||||||
|
'device_id': <ANY>,
|
||||||
|
'disabled_by': None,
|
||||||
|
'domain': 'binary_sensor',
|
||||||
|
'entity_category': None,
|
||||||
|
'entity_id': 'binary_sensor.refrigerator_freezer_door',
|
||||||
|
'has_entity_name': True,
|
||||||
|
'hidden_by': None,
|
||||||
|
'icon': None,
|
||||||
|
'id': <ANY>,
|
||||||
|
'labels': set({
|
||||||
|
}),
|
||||||
|
'name': None,
|
||||||
|
'options': dict({
|
||||||
|
}),
|
||||||
|
'original_device_class': <BinarySensorDeviceClass.DOOR: 'door'>,
|
||||||
|
'original_icon': None,
|
||||||
|
'original_name': 'Freezer door',
|
||||||
|
'platform': 'smartthings',
|
||||||
|
'previous_unique_id': None,
|
||||||
|
'supported_features': 0,
|
||||||
|
'translation_key': 'freezer_door',
|
||||||
|
'unique_id': '7d3feb98-8a36-4351-c362-5e21ad3a78dd_freezer_contactSensor_contact_contact',
|
||||||
|
'unit_of_measurement': None,
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01001][binary_sensor.refrigerator_freezer_door-state]
|
||||||
|
StateSnapshot({
|
||||||
|
'attributes': ReadOnlyDict({
|
||||||
|
'device_class': 'door',
|
||||||
|
'friendly_name': 'Refrigerator Freezer door',
|
||||||
|
}),
|
||||||
|
'context': <ANY>,
|
||||||
|
'entity_id': 'binary_sensor.refrigerator_freezer_door',
|
||||||
|
'last_changed': <ANY>,
|
||||||
|
'last_reported': <ANY>,
|
||||||
|
'last_updated': <ANY>,
|
||||||
|
'state': 'off',
|
||||||
|
})
|
||||||
|
# ---
|
||||||
# name: test_all_entities[da_ref_normal_01011][binary_sensor.frigo_cooler_door-entry]
|
# name: test_all_entities[da_ref_normal_01011][binary_sensor.frigo_cooler_door-entry]
|
||||||
EntityRegistryEntrySnapshot({
|
EntityRegistryEntrySnapshot({
|
||||||
'aliases': set({
|
'aliases': set({
|
||||||
|
@ -187,3 +187,50 @@
|
|||||||
'state': 'unknown',
|
'state': 'unknown',
|
||||||
})
|
})
|
||||||
# ---
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01001][button.refrigerator_reset_water_filter-entry]
|
||||||
|
EntityRegistryEntrySnapshot({
|
||||||
|
'aliases': set({
|
||||||
|
}),
|
||||||
|
'area_id': None,
|
||||||
|
'capabilities': None,
|
||||||
|
'config_entry_id': <ANY>,
|
||||||
|
'config_subentry_id': <ANY>,
|
||||||
|
'device_class': None,
|
||||||
|
'device_id': <ANY>,
|
||||||
|
'disabled_by': None,
|
||||||
|
'domain': 'button',
|
||||||
|
'entity_category': None,
|
||||||
|
'entity_id': 'button.refrigerator_reset_water_filter',
|
||||||
|
'has_entity_name': True,
|
||||||
|
'hidden_by': None,
|
||||||
|
'icon': None,
|
||||||
|
'id': <ANY>,
|
||||||
|
'labels': set({
|
||||||
|
}),
|
||||||
|
'name': None,
|
||||||
|
'options': dict({
|
||||||
|
}),
|
||||||
|
'original_device_class': None,
|
||||||
|
'original_icon': None,
|
||||||
|
'original_name': 'Reset water filter',
|
||||||
|
'platform': 'smartthings',
|
||||||
|
'previous_unique_id': None,
|
||||||
|
'supported_features': 0,
|
||||||
|
'translation_key': 'reset_water_filter',
|
||||||
|
'unique_id': '7d3feb98-8a36-4351-c362-5e21ad3a78dd_main_custom.waterFilter_resetWaterFilter',
|
||||||
|
'unit_of_measurement': None,
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01001][button.refrigerator_reset_water_filter-state]
|
||||||
|
StateSnapshot({
|
||||||
|
'attributes': ReadOnlyDict({
|
||||||
|
'friendly_name': 'Refrigerator Reset water filter',
|
||||||
|
}),
|
||||||
|
'context': <ANY>,
|
||||||
|
'entity_id': 'button.refrigerator_reset_water_filter',
|
||||||
|
'last_changed': <ANY>,
|
||||||
|
'last_reported': <ANY>,
|
||||||
|
'last_updated': <ANY>,
|
||||||
|
'state': 'unknown',
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
@ -629,6 +629,39 @@
|
|||||||
'via_device_id': None,
|
'via_device_id': None,
|
||||||
})
|
})
|
||||||
# ---
|
# ---
|
||||||
|
# name: test_devices[da_ref_normal_01001]
|
||||||
|
DeviceRegistryEntrySnapshot({
|
||||||
|
'area_id': None,
|
||||||
|
'config_entries': <ANY>,
|
||||||
|
'config_entries_subentries': <ANY>,
|
||||||
|
'configuration_url': 'https://account.smartthings.com',
|
||||||
|
'connections': set({
|
||||||
|
}),
|
||||||
|
'disabled_by': None,
|
||||||
|
'entry_type': None,
|
||||||
|
'hw_version': '',
|
||||||
|
'id': <ANY>,
|
||||||
|
'identifiers': set({
|
||||||
|
tuple(
|
||||||
|
'smartthings',
|
||||||
|
'7d3feb98-8a36-4351-c362-5e21ad3a78dd',
|
||||||
|
),
|
||||||
|
}),
|
||||||
|
'is_new': False,
|
||||||
|
'labels': set({
|
||||||
|
}),
|
||||||
|
'manufacturer': 'Samsung Electronics',
|
||||||
|
'model': '24K_REF_LCD_FHUB9.0',
|
||||||
|
'model_id': None,
|
||||||
|
'name': 'Refrigerator',
|
||||||
|
'name_by_user': None,
|
||||||
|
'primary_config_entry': <ANY>,
|
||||||
|
'serial_number': None,
|
||||||
|
'suggested_area': None,
|
||||||
|
'sw_version': '20240616.213423',
|
||||||
|
'via_device_id': None,
|
||||||
|
})
|
||||||
|
# ---
|
||||||
# name: test_devices[da_ref_normal_01011]
|
# name: test_devices[da_ref_normal_01011]
|
||||||
DeviceRegistryEntrySnapshot({
|
DeviceRegistryEntrySnapshot({
|
||||||
'area_id': None,
|
'area_id': None,
|
||||||
|
@ -4049,6 +4049,283 @@
|
|||||||
'state': '0.0135559777781698',
|
'state': '0.0135559777781698',
|
||||||
})
|
})
|
||||||
# ---
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01001][sensor.refrigerator_energy-entry]
|
||||||
|
EntityRegistryEntrySnapshot({
|
||||||
|
'aliases': set({
|
||||||
|
}),
|
||||||
|
'area_id': None,
|
||||||
|
'capabilities': dict({
|
||||||
|
'state_class': <SensorStateClass.TOTAL_INCREASING: 'total_increasing'>,
|
||||||
|
}),
|
||||||
|
'config_entry_id': <ANY>,
|
||||||
|
'config_subentry_id': <ANY>,
|
||||||
|
'device_class': None,
|
||||||
|
'device_id': <ANY>,
|
||||||
|
'disabled_by': None,
|
||||||
|
'domain': 'sensor',
|
||||||
|
'entity_category': None,
|
||||||
|
'entity_id': 'sensor.refrigerator_energy',
|
||||||
|
'has_entity_name': True,
|
||||||
|
'hidden_by': None,
|
||||||
|
'icon': None,
|
||||||
|
'id': <ANY>,
|
||||||
|
'labels': set({
|
||||||
|
}),
|
||||||
|
'name': None,
|
||||||
|
'options': dict({
|
||||||
|
'sensor': dict({
|
||||||
|
'suggested_display_precision': 2,
|
||||||
|
}),
|
||||||
|
}),
|
||||||
|
'original_device_class': <SensorDeviceClass.ENERGY: 'energy'>,
|
||||||
|
'original_icon': None,
|
||||||
|
'original_name': 'Energy',
|
||||||
|
'platform': 'smartthings',
|
||||||
|
'previous_unique_id': None,
|
||||||
|
'supported_features': 0,
|
||||||
|
'translation_key': None,
|
||||||
|
'unique_id': '7d3feb98-8a36-4351-c362-5e21ad3a78dd_main_powerConsumptionReport_powerConsumption_energy_meter',
|
||||||
|
'unit_of_measurement': <UnitOfEnergy.KILO_WATT_HOUR: 'kWh'>,
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01001][sensor.refrigerator_energy-state]
|
||||||
|
StateSnapshot({
|
||||||
|
'attributes': ReadOnlyDict({
|
||||||
|
'device_class': 'energy',
|
||||||
|
'friendly_name': 'Refrigerator Energy',
|
||||||
|
'state_class': <SensorStateClass.TOTAL_INCREASING: 'total_increasing'>,
|
||||||
|
'unit_of_measurement': <UnitOfEnergy.KILO_WATT_HOUR: 'kWh'>,
|
||||||
|
}),
|
||||||
|
'context': <ANY>,
|
||||||
|
'entity_id': 'sensor.refrigerator_energy',
|
||||||
|
'last_changed': <ANY>,
|
||||||
|
'last_reported': <ANY>,
|
||||||
|
'last_updated': <ANY>,
|
||||||
|
'state': '4381.422',
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01001][sensor.refrigerator_energy_difference-entry]
|
||||||
|
EntityRegistryEntrySnapshot({
|
||||||
|
'aliases': set({
|
||||||
|
}),
|
||||||
|
'area_id': None,
|
||||||
|
'capabilities': dict({
|
||||||
|
'state_class': <SensorStateClass.TOTAL: 'total'>,
|
||||||
|
}),
|
||||||
|
'config_entry_id': <ANY>,
|
||||||
|
'config_subentry_id': <ANY>,
|
||||||
|
'device_class': None,
|
||||||
|
'device_id': <ANY>,
|
||||||
|
'disabled_by': None,
|
||||||
|
'domain': 'sensor',
|
||||||
|
'entity_category': None,
|
||||||
|
'entity_id': 'sensor.refrigerator_energy_difference',
|
||||||
|
'has_entity_name': True,
|
||||||
|
'hidden_by': None,
|
||||||
|
'icon': None,
|
||||||
|
'id': <ANY>,
|
||||||
|
'labels': set({
|
||||||
|
}),
|
||||||
|
'name': None,
|
||||||
|
'options': dict({
|
||||||
|
'sensor': dict({
|
||||||
|
'suggested_display_precision': 2,
|
||||||
|
}),
|
||||||
|
}),
|
||||||
|
'original_device_class': <SensorDeviceClass.ENERGY: 'energy'>,
|
||||||
|
'original_icon': None,
|
||||||
|
'original_name': 'Energy difference',
|
||||||
|
'platform': 'smartthings',
|
||||||
|
'previous_unique_id': None,
|
||||||
|
'supported_features': 0,
|
||||||
|
'translation_key': 'energy_difference',
|
||||||
|
'unique_id': '7d3feb98-8a36-4351-c362-5e21ad3a78dd_main_powerConsumptionReport_powerConsumption_deltaEnergy_meter',
|
||||||
|
'unit_of_measurement': <UnitOfEnergy.KILO_WATT_HOUR: 'kWh'>,
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01001][sensor.refrigerator_energy_difference-state]
|
||||||
|
StateSnapshot({
|
||||||
|
'attributes': ReadOnlyDict({
|
||||||
|
'device_class': 'energy',
|
||||||
|
'friendly_name': 'Refrigerator Energy difference',
|
||||||
|
'state_class': <SensorStateClass.TOTAL: 'total'>,
|
||||||
|
'unit_of_measurement': <UnitOfEnergy.KILO_WATT_HOUR: 'kWh'>,
|
||||||
|
}),
|
||||||
|
'context': <ANY>,
|
||||||
|
'entity_id': 'sensor.refrigerator_energy_difference',
|
||||||
|
'last_changed': <ANY>,
|
||||||
|
'last_reported': <ANY>,
|
||||||
|
'last_updated': <ANY>,
|
||||||
|
'state': '0.027',
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01001][sensor.refrigerator_energy_saved-entry]
|
||||||
|
EntityRegistryEntrySnapshot({
|
||||||
|
'aliases': set({
|
||||||
|
}),
|
||||||
|
'area_id': None,
|
||||||
|
'capabilities': dict({
|
||||||
|
'state_class': <SensorStateClass.TOTAL_INCREASING: 'total_increasing'>,
|
||||||
|
}),
|
||||||
|
'config_entry_id': <ANY>,
|
||||||
|
'config_subentry_id': <ANY>,
|
||||||
|
'device_class': None,
|
||||||
|
'device_id': <ANY>,
|
||||||
|
'disabled_by': None,
|
||||||
|
'domain': 'sensor',
|
||||||
|
'entity_category': None,
|
||||||
|
'entity_id': 'sensor.refrigerator_energy_saved',
|
||||||
|
'has_entity_name': True,
|
||||||
|
'hidden_by': None,
|
||||||
|
'icon': None,
|
||||||
|
'id': <ANY>,
|
||||||
|
'labels': set({
|
||||||
|
}),
|
||||||
|
'name': None,
|
||||||
|
'options': dict({
|
||||||
|
'sensor': dict({
|
||||||
|
'suggested_display_precision': 2,
|
||||||
|
}),
|
||||||
|
}),
|
||||||
|
'original_device_class': <SensorDeviceClass.ENERGY: 'energy'>,
|
||||||
|
'original_icon': None,
|
||||||
|
'original_name': 'Energy saved',
|
||||||
|
'platform': 'smartthings',
|
||||||
|
'previous_unique_id': None,
|
||||||
|
'supported_features': 0,
|
||||||
|
'translation_key': 'energy_saved',
|
||||||
|
'unique_id': '7d3feb98-8a36-4351-c362-5e21ad3a78dd_main_powerConsumptionReport_powerConsumption_energySaved_meter',
|
||||||
|
'unit_of_measurement': <UnitOfEnergy.KILO_WATT_HOUR: 'kWh'>,
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01001][sensor.refrigerator_energy_saved-state]
|
||||||
|
StateSnapshot({
|
||||||
|
'attributes': ReadOnlyDict({
|
||||||
|
'device_class': 'energy',
|
||||||
|
'friendly_name': 'Refrigerator Energy saved',
|
||||||
|
'state_class': <SensorStateClass.TOTAL_INCREASING: 'total_increasing'>,
|
||||||
|
'unit_of_measurement': <UnitOfEnergy.KILO_WATT_HOUR: 'kWh'>,
|
||||||
|
}),
|
||||||
|
'context': <ANY>,
|
||||||
|
'entity_id': 'sensor.refrigerator_energy_saved',
|
||||||
|
'last_changed': <ANY>,
|
||||||
|
'last_reported': <ANY>,
|
||||||
|
'last_updated': <ANY>,
|
||||||
|
'state': '0.0',
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01001][sensor.refrigerator_power-entry]
|
||||||
|
EntityRegistryEntrySnapshot({
|
||||||
|
'aliases': set({
|
||||||
|
}),
|
||||||
|
'area_id': None,
|
||||||
|
'capabilities': dict({
|
||||||
|
'state_class': <SensorStateClass.MEASUREMENT: 'measurement'>,
|
||||||
|
}),
|
||||||
|
'config_entry_id': <ANY>,
|
||||||
|
'config_subentry_id': <ANY>,
|
||||||
|
'device_class': None,
|
||||||
|
'device_id': <ANY>,
|
||||||
|
'disabled_by': None,
|
||||||
|
'domain': 'sensor',
|
||||||
|
'entity_category': None,
|
||||||
|
'entity_id': 'sensor.refrigerator_power',
|
||||||
|
'has_entity_name': True,
|
||||||
|
'hidden_by': None,
|
||||||
|
'icon': None,
|
||||||
|
'id': <ANY>,
|
||||||
|
'labels': set({
|
||||||
|
}),
|
||||||
|
'name': None,
|
||||||
|
'options': dict({
|
||||||
|
'sensor': dict({
|
||||||
|
'suggested_display_precision': 2,
|
||||||
|
}),
|
||||||
|
}),
|
||||||
|
'original_device_class': <SensorDeviceClass.POWER: 'power'>,
|
||||||
|
'original_icon': None,
|
||||||
|
'original_name': 'Power',
|
||||||
|
'platform': 'smartthings',
|
||||||
|
'previous_unique_id': None,
|
||||||
|
'supported_features': 0,
|
||||||
|
'translation_key': None,
|
||||||
|
'unique_id': '7d3feb98-8a36-4351-c362-5e21ad3a78dd_main_powerConsumptionReport_powerConsumption_power_meter',
|
||||||
|
'unit_of_measurement': <UnitOfPower.WATT: 'W'>,
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01001][sensor.refrigerator_power-state]
|
||||||
|
StateSnapshot({
|
||||||
|
'attributes': ReadOnlyDict({
|
||||||
|
'device_class': 'power',
|
||||||
|
'friendly_name': 'Refrigerator Power',
|
||||||
|
'power_consumption_end': '2025-02-09T00:25:23Z',
|
||||||
|
'power_consumption_start': '2025-02-09T00:13:39Z',
|
||||||
|
'state_class': <SensorStateClass.MEASUREMENT: 'measurement'>,
|
||||||
|
'unit_of_measurement': <UnitOfPower.WATT: 'W'>,
|
||||||
|
}),
|
||||||
|
'context': <ANY>,
|
||||||
|
'entity_id': 'sensor.refrigerator_power',
|
||||||
|
'last_changed': <ANY>,
|
||||||
|
'last_reported': <ANY>,
|
||||||
|
'last_updated': <ANY>,
|
||||||
|
'state': '144',
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01001][sensor.refrigerator_power_energy-entry]
|
||||||
|
EntityRegistryEntrySnapshot({
|
||||||
|
'aliases': set({
|
||||||
|
}),
|
||||||
|
'area_id': None,
|
||||||
|
'capabilities': dict({
|
||||||
|
'state_class': <SensorStateClass.TOTAL_INCREASING: 'total_increasing'>,
|
||||||
|
}),
|
||||||
|
'config_entry_id': <ANY>,
|
||||||
|
'config_subentry_id': <ANY>,
|
||||||
|
'device_class': None,
|
||||||
|
'device_id': <ANY>,
|
||||||
|
'disabled_by': None,
|
||||||
|
'domain': 'sensor',
|
||||||
|
'entity_category': None,
|
||||||
|
'entity_id': 'sensor.refrigerator_power_energy',
|
||||||
|
'has_entity_name': True,
|
||||||
|
'hidden_by': None,
|
||||||
|
'icon': None,
|
||||||
|
'id': <ANY>,
|
||||||
|
'labels': set({
|
||||||
|
}),
|
||||||
|
'name': None,
|
||||||
|
'options': dict({
|
||||||
|
'sensor': dict({
|
||||||
|
'suggested_display_precision': 2,
|
||||||
|
}),
|
||||||
|
}),
|
||||||
|
'original_device_class': <SensorDeviceClass.ENERGY: 'energy'>,
|
||||||
|
'original_icon': None,
|
||||||
|
'original_name': 'Power energy',
|
||||||
|
'platform': 'smartthings',
|
||||||
|
'previous_unique_id': None,
|
||||||
|
'supported_features': 0,
|
||||||
|
'translation_key': 'power_energy',
|
||||||
|
'unique_id': '7d3feb98-8a36-4351-c362-5e21ad3a78dd_main_powerConsumptionReport_powerConsumption_powerEnergy_meter',
|
||||||
|
'unit_of_measurement': <UnitOfEnergy.KILO_WATT_HOUR: 'kWh'>,
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01001][sensor.refrigerator_power_energy-state]
|
||||||
|
StateSnapshot({
|
||||||
|
'attributes': ReadOnlyDict({
|
||||||
|
'device_class': 'energy',
|
||||||
|
'friendly_name': 'Refrigerator Power energy',
|
||||||
|
'state_class': <SensorStateClass.TOTAL_INCREASING: 'total_increasing'>,
|
||||||
|
'unit_of_measurement': <UnitOfEnergy.KILO_WATT_HOUR: 'kWh'>,
|
||||||
|
}),
|
||||||
|
'context': <ANY>,
|
||||||
|
'entity_id': 'sensor.refrigerator_power_energy',
|
||||||
|
'last_changed': <ANY>,
|
||||||
|
'last_reported': <ANY>,
|
||||||
|
'last_updated': <ANY>,
|
||||||
|
'state': '0.0270189050030708',
|
||||||
|
})
|
||||||
|
# ---
|
||||||
# name: test_all_entities[da_ref_normal_01011][sensor.frigo_energy-entry]
|
# name: test_all_entities[da_ref_normal_01011][sensor.frigo_energy-entry]
|
||||||
EntityRegistryEntrySnapshot({
|
EntityRegistryEntrySnapshot({
|
||||||
'aliases': set({
|
'aliases': set({
|
||||||
|
@ -93,6 +93,53 @@
|
|||||||
'state': 'off',
|
'state': 'off',
|
||||||
})
|
})
|
||||||
# ---
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01001][switch.refrigerator_ice_maker-entry]
|
||||||
|
EntityRegistryEntrySnapshot({
|
||||||
|
'aliases': set({
|
||||||
|
}),
|
||||||
|
'area_id': None,
|
||||||
|
'capabilities': None,
|
||||||
|
'config_entry_id': <ANY>,
|
||||||
|
'config_subentry_id': <ANY>,
|
||||||
|
'device_class': None,
|
||||||
|
'device_id': <ANY>,
|
||||||
|
'disabled_by': None,
|
||||||
|
'domain': 'switch',
|
||||||
|
'entity_category': None,
|
||||||
|
'entity_id': 'switch.refrigerator_ice_maker',
|
||||||
|
'has_entity_name': True,
|
||||||
|
'hidden_by': None,
|
||||||
|
'icon': None,
|
||||||
|
'id': <ANY>,
|
||||||
|
'labels': set({
|
||||||
|
}),
|
||||||
|
'name': None,
|
||||||
|
'options': dict({
|
||||||
|
}),
|
||||||
|
'original_device_class': None,
|
||||||
|
'original_icon': None,
|
||||||
|
'original_name': 'Ice maker',
|
||||||
|
'platform': 'smartthings',
|
||||||
|
'previous_unique_id': None,
|
||||||
|
'supported_features': 0,
|
||||||
|
'translation_key': 'ice_maker',
|
||||||
|
'unique_id': '7d3feb98-8a36-4351-c362-5e21ad3a78dd_icemaker_switch_switch_switch',
|
||||||
|
'unit_of_measurement': None,
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01001][switch.refrigerator_ice_maker-state]
|
||||||
|
StateSnapshot({
|
||||||
|
'attributes': ReadOnlyDict({
|
||||||
|
'friendly_name': 'Refrigerator Ice maker',
|
||||||
|
}),
|
||||||
|
'context': <ANY>,
|
||||||
|
'entity_id': 'switch.refrigerator_ice_maker',
|
||||||
|
'last_changed': <ANY>,
|
||||||
|
'last_reported': <ANY>,
|
||||||
|
'last_updated': <ANY>,
|
||||||
|
'state': 'on',
|
||||||
|
})
|
||||||
|
# ---
|
||||||
# name: test_all_entities[da_rvc_normal_000001][switch.robot_vacuum-entry]
|
# name: test_all_entities[da_rvc_normal_000001][switch.robot_vacuum-entry]
|
||||||
EntityRegistryEntrySnapshot({
|
EntityRegistryEntrySnapshot({
|
||||||
'aliases': set({
|
'aliases': set({
|
||||||
|
Loading…
x
Reference in New Issue
Block a user