mirror of
https://github.com/home-assistant/core.git
synced 2025-07-15 17:27:10 +00:00
Don't create SmartThings entities for disabled components (#141909)
This commit is contained in:
parent
314834b4eb
commit
fba11d8016
@ -478,7 +478,27 @@ def process_status(status: dict[str, ComponentStatus]) -> dict[str, ComponentSta
|
|||||||
if (main_component := status.get(MAIN)) is None:
|
if (main_component := status.get(MAIN)) is None:
|
||||||
return status
|
return status
|
||||||
if (
|
if (
|
||||||
disabled_capabilities_capability := main_component.get(
|
disabled_components_capability := main_component.get(
|
||||||
|
Capability.CUSTOM_DISABLED_COMPONENTS
|
||||||
|
)
|
||||||
|
) is not None:
|
||||||
|
disabled_components = cast(
|
||||||
|
list[str],
|
||||||
|
disabled_components_capability[Attribute.DISABLED_COMPONENTS].value,
|
||||||
|
)
|
||||||
|
if disabled_components is not None:
|
||||||
|
for component in disabled_components:
|
||||||
|
if component in status:
|
||||||
|
del status[component]
|
||||||
|
for component_status in status.values():
|
||||||
|
process_component_status(component_status)
|
||||||
|
return status
|
||||||
|
|
||||||
|
|
||||||
|
def process_component_status(status: ComponentStatus) -> None:
|
||||||
|
"""Remove disabled capabilities from component status."""
|
||||||
|
if (
|
||||||
|
disabled_capabilities_capability := status.get(
|
||||||
Capability.CUSTOM_DISABLED_CAPABILITIES
|
Capability.CUSTOM_DISABLED_CAPABILITIES
|
||||||
)
|
)
|
||||||
) is not None:
|
) is not None:
|
||||||
@ -488,9 +508,8 @@ def process_status(status: dict[str, ComponentStatus]) -> dict[str, ComponentSta
|
|||||||
)
|
)
|
||||||
if disabled_capabilities is not None:
|
if disabled_capabilities is not None:
|
||||||
for capability in disabled_capabilities:
|
for capability in disabled_capabilities:
|
||||||
if capability in main_component and (
|
if capability in status and (
|
||||||
capability not in KEEP_CAPABILITY_QUIRK
|
capability not in KEEP_CAPABILITY_QUIRK
|
||||||
or not KEEP_CAPABILITY_QUIRK[capability](main_component[capability])
|
or not KEEP_CAPABILITY_QUIRK[capability](status[capability])
|
||||||
):
|
):
|
||||||
del main_component[capability]
|
del status[capability]
|
||||||
return status
|
|
||||||
|
@ -106,6 +106,7 @@ def mock_smartthings() -> Generator[AsyncMock]:
|
|||||||
"ge_in_wall_smart_dimmer",
|
"ge_in_wall_smart_dimmer",
|
||||||
"centralite",
|
"centralite",
|
||||||
"da_ref_normal_000001",
|
"da_ref_normal_000001",
|
||||||
|
"da_ref_normal_01011",
|
||||||
"vd_network_audio_002s",
|
"vd_network_audio_002s",
|
||||||
"vd_sensor_light_2023",
|
"vd_sensor_light_2023",
|
||||||
"iphone",
|
"iphone",
|
||||||
|
@ -0,0 +1,933 @@
|
|||||||
|
{
|
||||||
|
"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": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.meatAging": {
|
||||||
|
"zoneInfo": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"supportedMeatTypes": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"supportedAgingMethods": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"status": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.fridgePantryMode": {
|
||||||
|
"mode": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"supportedModes": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pantry-02": {
|
||||||
|
"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": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"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": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"switch": {
|
||||||
|
"switch": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"onedoor": {
|
||||||
|
"custom.fridgeMode": {
|
||||||
|
"fridgeModeValue": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"fridgeMode": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"supportedFridgeModes": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"contactSensor": {
|
||||||
|
"contact": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.unavailableCapabilities": {
|
||||||
|
"unavailableCommands": {
|
||||||
|
"value": [],
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.disabledCapabilities": {
|
||||||
|
"disabledCapabilities": {
|
||||||
|
"value": ["samsungce.freezerConvertMode", "custom.fridgeMode"],
|
||||||
|
"timestamp": "2024-12-01T18:22:20.155Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.temperatureSetting": {
|
||||||
|
"supportedDesiredTemperatures": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"desiredTemperature": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"temperatureMeasurement": {
|
||||||
|
"temperatureRange": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"temperature": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.thermostatSetpointControl": {
|
||||||
|
"minimumSetpoint": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"maximumSetpoint": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.freezerConvertMode": {
|
||||||
|
"supportedFreezerConvertModes": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"freezerConvertMode": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"thermostatCoolingSetpoint": {
|
||||||
|
"coolingSetpointRange": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"coolingSetpoint": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"scale-10": {
|
||||||
|
"samsungce.connectionState": {
|
||||||
|
"connectionState": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.disabledCapabilities": {
|
||||||
|
"disabledCapabilities": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.weightMeasurement": {
|
||||||
|
"weight": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.weightMeasurementCalibration": {}
|
||||||
|
},
|
||||||
|
"scale-11": {
|
||||||
|
"custom.disabledCapabilities": {
|
||||||
|
"disabledCapabilities": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.weightMeasurement": {
|
||||||
|
"weight": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"cooler": {
|
||||||
|
"custom.fridgeMode": {
|
||||||
|
"fridgeModeValue": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"fridgeMode": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"supportedFridgeModes": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"contactSensor": {
|
||||||
|
"contact": {
|
||||||
|
"value": "closed",
|
||||||
|
"timestamp": "2025-03-30T18:36:45.151Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.unavailableCapabilities": {
|
||||||
|
"unavailableCommands": {
|
||||||
|
"value": [],
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.disabledCapabilities": {
|
||||||
|
"disabledCapabilities": {
|
||||||
|
"value": ["custom.fridgeMode", "samsungce.temperatureSetting"],
|
||||||
|
"timestamp": "2024-12-01T18:22:22.081Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.temperatureSetting": {
|
||||||
|
"supportedDesiredTemperatures": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"desiredTemperature": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"temperatureMeasurement": {
|
||||||
|
"temperatureRange": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"temperature": {
|
||||||
|
"value": 6,
|
||||||
|
"unit": "C",
|
||||||
|
"timestamp": "2025-03-30T17:41:42.863Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.thermostatSetpointControl": {
|
||||||
|
"minimumSetpoint": {
|
||||||
|
"value": 1,
|
||||||
|
"unit": "C",
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
},
|
||||||
|
"maximumSetpoint": {
|
||||||
|
"value": 7,
|
||||||
|
"unit": "C",
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"thermostatCoolingSetpoint": {
|
||||||
|
"coolingSetpointRange": {
|
||||||
|
"value": {
|
||||||
|
"minimum": 1,
|
||||||
|
"maximum": 7,
|
||||||
|
"step": 1
|
||||||
|
},
|
||||||
|
"unit": "C",
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
},
|
||||||
|
"coolingSetpoint": {
|
||||||
|
"value": 6,
|
||||||
|
"unit": "C",
|
||||||
|
"timestamp": "2025-03-30T17:33:48.530Z"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"freezer": {
|
||||||
|
"custom.fridgeMode": {
|
||||||
|
"fridgeModeValue": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"fridgeMode": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"supportedFridgeModes": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"contactSensor": {
|
||||||
|
"contact": {
|
||||||
|
"value": "closed",
|
||||||
|
"timestamp": "2024-12-01T18:22:19.331Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.unavailableCapabilities": {
|
||||||
|
"unavailableCommands": {
|
||||||
|
"value": [],
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.disabledCapabilities": {
|
||||||
|
"disabledCapabilities": {
|
||||||
|
"value": [
|
||||||
|
"custom.fridgeMode",
|
||||||
|
"samsungce.temperatureSetting",
|
||||||
|
"samsungce.freezerConvertMode"
|
||||||
|
],
|
||||||
|
"timestamp": "2024-12-01T18:22:22.081Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.temperatureSetting": {
|
||||||
|
"supportedDesiredTemperatures": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"desiredTemperature": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"temperatureMeasurement": {
|
||||||
|
"temperatureRange": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"temperature": {
|
||||||
|
"value": -17,
|
||||||
|
"unit": "C",
|
||||||
|
"timestamp": "2025-03-30T17:35:48.599Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.thermostatSetpointControl": {
|
||||||
|
"minimumSetpoint": {
|
||||||
|
"value": -23,
|
||||||
|
"unit": "C",
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
},
|
||||||
|
"maximumSetpoint": {
|
||||||
|
"value": -15,
|
||||||
|
"unit": "C",
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.freezerConvertMode": {
|
||||||
|
"supportedFreezerConvertModes": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"freezerConvertMode": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"thermostatCoolingSetpoint": {
|
||||||
|
"coolingSetpointRange": {
|
||||||
|
"value": {
|
||||||
|
"minimum": -23,
|
||||||
|
"maximum": -15,
|
||||||
|
"step": 1
|
||||||
|
},
|
||||||
|
"unit": "C",
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
},
|
||||||
|
"coolingSetpoint": {
|
||||||
|
"value": -17,
|
||||||
|
"unit": "C",
|
||||||
|
"timestamp": "2025-03-30T17:32:34.710Z"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"main": {
|
||||||
|
"contactSensor": {
|
||||||
|
"contact": {
|
||||||
|
"value": "closed",
|
||||||
|
"timestamp": "2025-03-30T18:36:45.151Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.fridgeWelcomeLighting": {
|
||||||
|
"detectionProximity": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"supportedDetectionProximities": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"status": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.viewInside": {
|
||||||
|
"supportedFocusAreas": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"contents": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"lastUpdatedTime": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.deviceIdentification": {
|
||||||
|
"micomAssayCode": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"modelName": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"serialNumber": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"serialNumberExtra": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"modelClassificationCode": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"description": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"releaseYear": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"binaryId": {
|
||||||
|
"value": "TP1X_REF_21K",
|
||||||
|
"timestamp": "2025-03-23T21:53:15.900Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.quickControl": {
|
||||||
|
"version": {
|
||||||
|
"value": "1.0",
|
||||||
|
"timestamp": "2025-02-12T21:52:01.494Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.fridgeMode": {
|
||||||
|
"fridgeModeValue": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"fridgeMode": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"supportedFridgeModes": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"ocf": {
|
||||||
|
"st": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"mndt": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"mnfv": {
|
||||||
|
"value": "A-RFWW-TP1-22-REV1_20241030",
|
||||||
|
"timestamp": "2025-02-12T21:51:58.927Z"
|
||||||
|
},
|
||||||
|
"mnhw": {
|
||||||
|
"value": "Realtek",
|
||||||
|
"timestamp": "2025-02-12T21:51:58.927Z"
|
||||||
|
},
|
||||||
|
"di": {
|
||||||
|
"value": "5758b2ec-563e-f39b-ec39-208e54aabf60",
|
||||||
|
"timestamp": "2025-02-12T21:51:58.927Z"
|
||||||
|
},
|
||||||
|
"mnsl": {
|
||||||
|
"value": "http://www.samsung.com",
|
||||||
|
"timestamp": "2025-02-12T21:51:58.927Z"
|
||||||
|
},
|
||||||
|
"dmv": {
|
||||||
|
"value": "1.2.1",
|
||||||
|
"timestamp": "2025-02-12T21:51:58.927Z"
|
||||||
|
},
|
||||||
|
"n": {
|
||||||
|
"value": "Samsung-Refrigerator",
|
||||||
|
"timestamp": "2025-02-12T21:51:58.927Z"
|
||||||
|
},
|
||||||
|
"mnmo": {
|
||||||
|
"value": "TP1X_REF_21K|00156941|00050126001611304100000030010000",
|
||||||
|
"timestamp": "2025-02-12T21:51:58.927Z"
|
||||||
|
},
|
||||||
|
"vid": {
|
||||||
|
"value": "DA-REF-NORMAL-01011",
|
||||||
|
"timestamp": "2025-02-12T21:51:58.927Z"
|
||||||
|
},
|
||||||
|
"mnmn": {
|
||||||
|
"value": "Samsung Electronics",
|
||||||
|
"timestamp": "2025-02-12T21:51:58.927Z"
|
||||||
|
},
|
||||||
|
"mnml": {
|
||||||
|
"value": "http://www.samsung.com",
|
||||||
|
"timestamp": "2025-02-12T21:51:58.927Z"
|
||||||
|
},
|
||||||
|
"mnpv": {
|
||||||
|
"value": "DAWIT 2.0",
|
||||||
|
"timestamp": "2025-02-12T21:51:58.927Z"
|
||||||
|
},
|
||||||
|
"mnos": {
|
||||||
|
"value": "TizenRT 3.1",
|
||||||
|
"timestamp": "2025-02-12T21:51:58.927Z"
|
||||||
|
},
|
||||||
|
"pi": {
|
||||||
|
"value": "5758b2ec-563e-f39b-ec39-208e54aabf60",
|
||||||
|
"timestamp": "2025-02-12T21:51:58.927Z"
|
||||||
|
},
|
||||||
|
"icv": {
|
||||||
|
"value": "core.1.1.0",
|
||||||
|
"timestamp": "2025-02-12T21:51:58.927Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.fridgeVacationMode": {
|
||||||
|
"vacationMode": {
|
||||||
|
"value": "off",
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.disabledCapabilities": {
|
||||||
|
"disabledCapabilities": {
|
||||||
|
"value": [
|
||||||
|
"temperatureMeasurement",
|
||||||
|
"thermostatCoolingSetpoint",
|
||||||
|
"custom.fridgeMode",
|
||||||
|
"custom.deodorFilter",
|
||||||
|
"custom.waterFilter",
|
||||||
|
"custom.dustFilter",
|
||||||
|
"samsungce.viewInside",
|
||||||
|
"samsungce.fridgeWelcomeLighting",
|
||||||
|
"samsungce.sabbathMode"
|
||||||
|
],
|
||||||
|
"timestamp": "2025-02-12T21:52:01.494Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.driverVersion": {
|
||||||
|
"versionNumber": {
|
||||||
|
"value": 24090102,
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sec.diagnosticsInformation": {
|
||||||
|
"logType": {
|
||||||
|
"value": ["errCode", "dump"],
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
},
|
||||||
|
"endpoint": {
|
||||||
|
"value": "SSM",
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
},
|
||||||
|
"minVersion": {
|
||||||
|
"value": "3.0",
|
||||||
|
"timestamp": "2025-02-12T21:52:00.460Z"
|
||||||
|
},
|
||||||
|
"signinPermission": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"setupId": {
|
||||||
|
"value": "RB0",
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
},
|
||||||
|
"protocolType": {
|
||||||
|
"value": "ble_ocf",
|
||||||
|
"timestamp": "2025-02-12T21:52:00.460Z"
|
||||||
|
},
|
||||||
|
"tsId": {
|
||||||
|
"value": "DA01",
|
||||||
|
"timestamp": "2025-02-12T21:52:00.460Z"
|
||||||
|
},
|
||||||
|
"mnId": {
|
||||||
|
"value": "0AJT",
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
},
|
||||||
|
"dumpType": {
|
||||||
|
"value": "file",
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"temperatureMeasurement": {
|
||||||
|
"temperatureRange": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"temperature": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.deviceReportStateConfiguration": {
|
||||||
|
"reportStateRealtimePeriod": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"reportStateRealtime": {
|
||||||
|
"value": {
|
||||||
|
"state": "disabled"
|
||||||
|
},
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
},
|
||||||
|
"reportStatePeriod": {
|
||||||
|
"value": "enabled",
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"thermostatCoolingSetpoint": {
|
||||||
|
"coolingSetpointRange": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"coolingSetpoint": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.disabledComponents": {
|
||||||
|
"disabledComponents": {
|
||||||
|
"value": [
|
||||||
|
"icemaker",
|
||||||
|
"icemaker-02",
|
||||||
|
"icemaker-03",
|
||||||
|
"pantry-01",
|
||||||
|
"pantry-02",
|
||||||
|
"scale-10",
|
||||||
|
"scale-11",
|
||||||
|
"cvroom",
|
||||||
|
"onedoor"
|
||||||
|
],
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"demandResponseLoadControl": {
|
||||||
|
"drlcStatus": {
|
||||||
|
"value": {
|
||||||
|
"drlcType": 1,
|
||||||
|
"drlcLevel": 0,
|
||||||
|
"duration": 0,
|
||||||
|
"override": false
|
||||||
|
},
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.sabbathMode": {
|
||||||
|
"supportedActions": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"status": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"powerConsumptionReport": {
|
||||||
|
"powerConsumption": {
|
||||||
|
"value": {
|
||||||
|
"energy": 66571,
|
||||||
|
"deltaEnergy": 19,
|
||||||
|
"power": 61,
|
||||||
|
"powerEnergy": 18.91178222020467,
|
||||||
|
"persistedEnergy": 0,
|
||||||
|
"energySaved": 0,
|
||||||
|
"persistedSavedEnergy": 0,
|
||||||
|
"start": "2025-03-30T18:21:37Z",
|
||||||
|
"end": "2025-03-30T18:38:18Z"
|
||||||
|
},
|
||||||
|
"timestamp": "2025-03-30T18:38:18.219Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"refresh": {},
|
||||||
|
"execute": {
|
||||||
|
"data": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sec.wifiConfiguration": {
|
||||||
|
"autoReconnection": {
|
||||||
|
"value": true,
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
},
|
||||||
|
"minVersion": {
|
||||||
|
"value": "1.0",
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
},
|
||||||
|
"supportedWiFiFreq": {
|
||||||
|
"value": ["2.4G"],
|
||||||
|
"timestamp": "2024-12-01T18:22:19.331Z"
|
||||||
|
},
|
||||||
|
"supportedAuthType": {
|
||||||
|
"value": ["OPEN", "WEP", "WPA-PSK", "WPA2-PSK", "SAE"],
|
||||||
|
"timestamp": "2024-12-01T18:22:19.331Z"
|
||||||
|
},
|
||||||
|
"protocolType": {
|
||||||
|
"value": ["helper_hotspot"],
|
||||||
|
"timestamp": "2024-12-01T18:22:19.331Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.selfCheck": {
|
||||||
|
"result": {
|
||||||
|
"value": "passed",
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
},
|
||||||
|
"supportedActions": {
|
||||||
|
"value": ["start"],
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
},
|
||||||
|
"progress": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"errors": {
|
||||||
|
"value": [],
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
},
|
||||||
|
"status": {
|
||||||
|
"value": "ready",
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.dustFilter": {
|
||||||
|
"dustFilterUsageStep": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"dustFilterUsage": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"dustFilterLastResetDate": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"dustFilterStatus": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"dustFilterCapacity": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"dustFilterResetType": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"refrigeration": {
|
||||||
|
"defrost": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"rapidCooling": {
|
||||||
|
"value": "off",
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
},
|
||||||
|
"rapidFreezing": {
|
||||||
|
"value": "off",
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.deodorFilter": {
|
||||||
|
"deodorFilterCapacity": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"deodorFilterLastResetDate": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"deodorFilterStatus": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"deodorFilterResetType": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"deodorFilterUsage": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"deodorFilterUsageStep": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.powerCool": {
|
||||||
|
"activated": {
|
||||||
|
"value": false,
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.energyType": {
|
||||||
|
"energyType": {
|
||||||
|
"value": "2.0",
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
},
|
||||||
|
"energySavingSupport": {
|
||||||
|
"value": true,
|
||||||
|
"timestamp": "2025-03-06T23:10:37.429Z"
|
||||||
|
},
|
||||||
|
"drMaxDuration": {
|
||||||
|
"value": 99999999,
|
||||||
|
"unit": "min",
|
||||||
|
"timestamp": "2024-12-01T18:22:20.756Z"
|
||||||
|
},
|
||||||
|
"energySavingLevel": {
|
||||||
|
"value": 1,
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
},
|
||||||
|
"energySavingInfo": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"supportedEnergySavingLevels": {
|
||||||
|
"value": [1, 2],
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
},
|
||||||
|
"energySavingOperation": {
|
||||||
|
"value": false,
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
},
|
||||||
|
"notificationTemplateID": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"energySavingOperationSupport": {
|
||||||
|
"value": true,
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.softwareUpdate": {
|
||||||
|
"targetModule": {
|
||||||
|
"value": {},
|
||||||
|
"timestamp": "2024-12-01T18:55:10.062Z"
|
||||||
|
},
|
||||||
|
"otnDUID": {
|
||||||
|
"value": "MTCB2ZD4B6BT4",
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
},
|
||||||
|
"lastUpdatedDate": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"availableModules": {
|
||||||
|
"value": [],
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
},
|
||||||
|
"newVersionAvailable": {
|
||||||
|
"value": false,
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
},
|
||||||
|
"operatingState": {
|
||||||
|
"value": "none",
|
||||||
|
"timestamp": "2024-12-01T18:28:40.492Z"
|
||||||
|
},
|
||||||
|
"progress": {
|
||||||
|
"value": 0,
|
||||||
|
"unit": "%",
|
||||||
|
"timestamp": "2024-12-01T18:43:42.645Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"samsungce.powerFreeze": {
|
||||||
|
"activated": {
|
||||||
|
"value": false,
|
||||||
|
"timestamp": "2024-12-01T18:22:19.337Z"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.waterFilter": {
|
||||||
|
"waterFilterUsageStep": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"waterFilterResetType": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"waterFilterCapacity": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"waterFilterLastResetDate": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"waterFilterUsage": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"waterFilterStatus": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"cvroom": {
|
||||||
|
"custom.fridgeMode": {
|
||||||
|
"fridgeModeValue": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"fridgeMode": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"supportedFridgeModes": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"contactSensor": {
|
||||||
|
"contact": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"custom.disabledCapabilities": {
|
||||||
|
"disabledCapabilities": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"temperatureMeasurement": {
|
||||||
|
"temperatureRange": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"temperature": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"thermostatCoolingSetpoint": {
|
||||||
|
"coolingSetpointRange": {
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"coolingSetpoint": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"icemaker-02": {
|
||||||
|
"custom.disabledCapabilities": {
|
||||||
|
"disabledCapabilities": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"switch": {
|
||||||
|
"switch": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"icemaker-03": {
|
||||||
|
"custom.disabledCapabilities": {
|
||||||
|
"disabledCapabilities": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"switch": {
|
||||||
|
"switch": {
|
||||||
|
"value": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,521 @@
|
|||||||
|
{
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"deviceId": "5758b2ec-563e-f39b-ec39-208e54aabf60",
|
||||||
|
"name": "Samsung-Refrigerator",
|
||||||
|
"label": "Frigo",
|
||||||
|
"manufacturerName": "Samsung Electronics",
|
||||||
|
"presentationId": "DA-REF-NORMAL-01011",
|
||||||
|
"deviceManufacturerCode": "Samsung Electronics",
|
||||||
|
"locationId": "d91ee683-be36-4124-9200-c0030253fbc2",
|
||||||
|
"ownerId": "60b5179d-607f-f754-a648-6e1e21aeeb31",
|
||||||
|
"roomId": "c4f98377-534d-422f-b061-a4f3e281ddf5",
|
||||||
|
"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.deodorFilter",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.dustFilter",
|
||||||
|
"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.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.selfCheck",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.viewInside",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.fridgeWelcomeLighting",
|
||||||
|
"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.fridgeMode",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.thermostatSetpointControl",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.temperatureSetting",
|
||||||
|
"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.fridgeMode",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.thermostatSetpointControl",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.temperatureSetting",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.unavailableCapabilities",
|
||||||
|
"version": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
{
|
||||||
|
"name": "Other",
|
||||||
|
"categoryType": "manufacturer"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "cvroom",
|
||||||
|
"label": "cvroom",
|
||||||
|
"capabilities": [
|
||||||
|
{
|
||||||
|
"id": "contactSensor",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "temperatureMeasurement",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "thermostatCoolingSetpoint",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.disabledCapabilities",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.fridgeMode",
|
||||||
|
"version": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
{
|
||||||
|
"name": "Other",
|
||||||
|
"categoryType": "manufacturer"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "onedoor",
|
||||||
|
"label": "onedoor",
|
||||||
|
"capabilities": [
|
||||||
|
{
|
||||||
|
"id": "contactSensor",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "temperatureMeasurement",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "thermostatCoolingSetpoint",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.disabledCapabilities",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.fridgeMode",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "custom.thermostatSetpointControl",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.temperatureSetting",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.freezerConvertMode",
|
||||||
|
"version": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "samsungce.unavailableCapabilities",
|
||||||
|
"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": "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": "pantry-02",
|
||||||
|
"label": "pantry-02",
|
||||||
|
"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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"createTime": "2024-12-01T18:22:14.880Z",
|
||||||
|
"profile": {
|
||||||
|
"id": "37c7b355-bdaa-371b-b246-dbdf2a7f9c84"
|
||||||
|
},
|
||||||
|
"ocf": {
|
||||||
|
"ocfDeviceType": "oic.d.refrigerator",
|
||||||
|
"name": "Samsung-Refrigerator",
|
||||||
|
"specVersion": "core.1.1.0",
|
||||||
|
"verticalDomainSpecVersion": "1.2.1",
|
||||||
|
"manufacturerName": "Samsung Electronics",
|
||||||
|
"modelNumber": "TP1X_REF_21K|00156941|00050126001611304100000030010000",
|
||||||
|
"platformVersion": "DAWIT 2.0",
|
||||||
|
"platformOS": "TizenRT 3.1",
|
||||||
|
"hwVersion": "Realtek",
|
||||||
|
"firmwareVersion": "A-RFWW-TP1-22-REV1_20241030",
|
||||||
|
"vendorId": "DA-REF-NORMAL-01011",
|
||||||
|
"vendorResourceClientServerVersion": "Realtek Release 3.1.240221",
|
||||||
|
"lastSignupTime": "2024-12-01T18:22:14.807976528Z",
|
||||||
|
"transferCandidate": false,
|
||||||
|
"additionalAuthCodeRequired": false
|
||||||
|
},
|
||||||
|
"type": "OCF",
|
||||||
|
"restrictionTier": 0,
|
||||||
|
"allowed": null,
|
||||||
|
"executionContext": "CLOUD",
|
||||||
|
"relationships": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"_links": {}
|
||||||
|
}
|
@ -809,6 +809,150 @@
|
|||||||
'state': 'off',
|
'state': 'off',
|
||||||
})
|
})
|
||||||
# ---
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01011][binary_sensor.frigo_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.frigo_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': '5758b2ec-563e-f39b-ec39-208e54aabf60_cooler_contactSensor_contact_contact',
|
||||||
|
'unit_of_measurement': None,
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01011][binary_sensor.frigo_cooler_door-state]
|
||||||
|
StateSnapshot({
|
||||||
|
'attributes': ReadOnlyDict({
|
||||||
|
'device_class': 'door',
|
||||||
|
'friendly_name': 'Frigo Cooler door',
|
||||||
|
}),
|
||||||
|
'context': <ANY>,
|
||||||
|
'entity_id': 'binary_sensor.frigo_cooler_door',
|
||||||
|
'last_changed': <ANY>,
|
||||||
|
'last_reported': <ANY>,
|
||||||
|
'last_updated': <ANY>,
|
||||||
|
'state': 'off',
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01011][binary_sensor.frigo_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.frigo_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': 'Door',
|
||||||
|
'platform': 'smartthings',
|
||||||
|
'previous_unique_id': None,
|
||||||
|
'supported_features': 0,
|
||||||
|
'translation_key': None,
|
||||||
|
'unique_id': '5758b2ec-563e-f39b-ec39-208e54aabf60_main_contactSensor_contact_contact',
|
||||||
|
'unit_of_measurement': None,
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01011][binary_sensor.frigo_door-state]
|
||||||
|
StateSnapshot({
|
||||||
|
'attributes': ReadOnlyDict({
|
||||||
|
'device_class': 'door',
|
||||||
|
'friendly_name': 'Frigo Door',
|
||||||
|
}),
|
||||||
|
'context': <ANY>,
|
||||||
|
'entity_id': 'binary_sensor.frigo_door',
|
||||||
|
'last_changed': <ANY>,
|
||||||
|
'last_reported': <ANY>,
|
||||||
|
'last_updated': <ANY>,
|
||||||
|
'state': 'off',
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01011][binary_sensor.frigo_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.frigo_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': '5758b2ec-563e-f39b-ec39-208e54aabf60_freezer_contactSensor_contact_contact',
|
||||||
|
'unit_of_measurement': None,
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01011][binary_sensor.frigo_freezer_door-state]
|
||||||
|
StateSnapshot({
|
||||||
|
'attributes': ReadOnlyDict({
|
||||||
|
'device_class': 'door',
|
||||||
|
'friendly_name': 'Frigo Freezer door',
|
||||||
|
}),
|
||||||
|
'context': <ANY>,
|
||||||
|
'entity_id': 'binary_sensor.frigo_freezer_door',
|
||||||
|
'last_changed': <ANY>,
|
||||||
|
'last_reported': <ANY>,
|
||||||
|
'last_updated': <ANY>,
|
||||||
|
'state': 'off',
|
||||||
|
})
|
||||||
|
# ---
|
||||||
# name: test_all_entities[da_wm_dw_000001][binary_sensor.dishwasher_child_lock-entry]
|
# name: test_all_entities[da_wm_dw_000001][binary_sensor.dishwasher_child_lock-entry]
|
||||||
EntityRegistryEntrySnapshot({
|
EntityRegistryEntrySnapshot({
|
||||||
'aliases': set({
|
'aliases': set({
|
||||||
|
@ -629,6 +629,39 @@
|
|||||||
'via_device_id': None,
|
'via_device_id': None,
|
||||||
})
|
})
|
||||||
# ---
|
# ---
|
||||||
|
# name: test_devices[da_ref_normal_01011]
|
||||||
|
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': 'Realtek',
|
||||||
|
'id': <ANY>,
|
||||||
|
'identifiers': set({
|
||||||
|
tuple(
|
||||||
|
'smartthings',
|
||||||
|
'5758b2ec-563e-f39b-ec39-208e54aabf60',
|
||||||
|
),
|
||||||
|
}),
|
||||||
|
'is_new': False,
|
||||||
|
'labels': set({
|
||||||
|
}),
|
||||||
|
'manufacturer': 'Samsung Electronics',
|
||||||
|
'model': 'TP1X_REF_21K',
|
||||||
|
'model_id': None,
|
||||||
|
'name': 'Frigo',
|
||||||
|
'name_by_user': None,
|
||||||
|
'primary_config_entry': <ANY>,
|
||||||
|
'serial_number': None,
|
||||||
|
'suggested_area': None,
|
||||||
|
'sw_version': 'A-RFWW-TP1-22-REV1_20241030',
|
||||||
|
'via_device_id': None,
|
||||||
|
})
|
||||||
|
# ---
|
||||||
# name: test_devices[da_rvc_normal_000001]
|
# name: test_devices[da_rvc_normal_000001]
|
||||||
DeviceRegistryEntrySnapshot({
|
DeviceRegistryEntrySnapshot({
|
||||||
'area_id': 'theater',
|
'area_id': 'theater',
|
||||||
|
@ -4049,6 +4049,283 @@
|
|||||||
'state': '0.0135559777781698',
|
'state': '0.0135559777781698',
|
||||||
})
|
})
|
||||||
# ---
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01011][sensor.frigo_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.frigo_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': '5758b2ec-563e-f39b-ec39-208e54aabf60_main_powerConsumptionReport_powerConsumption_energy_meter',
|
||||||
|
'unit_of_measurement': <UnitOfEnergy.KILO_WATT_HOUR: 'kWh'>,
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01011][sensor.frigo_energy-state]
|
||||||
|
StateSnapshot({
|
||||||
|
'attributes': ReadOnlyDict({
|
||||||
|
'device_class': 'energy',
|
||||||
|
'friendly_name': 'Frigo Energy',
|
||||||
|
'state_class': <SensorStateClass.TOTAL_INCREASING: 'total_increasing'>,
|
||||||
|
'unit_of_measurement': <UnitOfEnergy.KILO_WATT_HOUR: 'kWh'>,
|
||||||
|
}),
|
||||||
|
'context': <ANY>,
|
||||||
|
'entity_id': 'sensor.frigo_energy',
|
||||||
|
'last_changed': <ANY>,
|
||||||
|
'last_reported': <ANY>,
|
||||||
|
'last_updated': <ANY>,
|
||||||
|
'state': '66.571',
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01011][sensor.frigo_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.frigo_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': '5758b2ec-563e-f39b-ec39-208e54aabf60_main_powerConsumptionReport_powerConsumption_deltaEnergy_meter',
|
||||||
|
'unit_of_measurement': <UnitOfEnergy.KILO_WATT_HOUR: 'kWh'>,
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01011][sensor.frigo_energy_difference-state]
|
||||||
|
StateSnapshot({
|
||||||
|
'attributes': ReadOnlyDict({
|
||||||
|
'device_class': 'energy',
|
||||||
|
'friendly_name': 'Frigo Energy difference',
|
||||||
|
'state_class': <SensorStateClass.TOTAL: 'total'>,
|
||||||
|
'unit_of_measurement': <UnitOfEnergy.KILO_WATT_HOUR: 'kWh'>,
|
||||||
|
}),
|
||||||
|
'context': <ANY>,
|
||||||
|
'entity_id': 'sensor.frigo_energy_difference',
|
||||||
|
'last_changed': <ANY>,
|
||||||
|
'last_reported': <ANY>,
|
||||||
|
'last_updated': <ANY>,
|
||||||
|
'state': '0.019',
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01011][sensor.frigo_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.frigo_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': '5758b2ec-563e-f39b-ec39-208e54aabf60_main_powerConsumptionReport_powerConsumption_energySaved_meter',
|
||||||
|
'unit_of_measurement': <UnitOfEnergy.KILO_WATT_HOUR: 'kWh'>,
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01011][sensor.frigo_energy_saved-state]
|
||||||
|
StateSnapshot({
|
||||||
|
'attributes': ReadOnlyDict({
|
||||||
|
'device_class': 'energy',
|
||||||
|
'friendly_name': 'Frigo Energy saved',
|
||||||
|
'state_class': <SensorStateClass.TOTAL_INCREASING: 'total_increasing'>,
|
||||||
|
'unit_of_measurement': <UnitOfEnergy.KILO_WATT_HOUR: 'kWh'>,
|
||||||
|
}),
|
||||||
|
'context': <ANY>,
|
||||||
|
'entity_id': 'sensor.frigo_energy_saved',
|
||||||
|
'last_changed': <ANY>,
|
||||||
|
'last_reported': <ANY>,
|
||||||
|
'last_updated': <ANY>,
|
||||||
|
'state': '0.0',
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01011][sensor.frigo_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.frigo_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': '5758b2ec-563e-f39b-ec39-208e54aabf60_main_powerConsumptionReport_powerConsumption_power_meter',
|
||||||
|
'unit_of_measurement': <UnitOfPower.WATT: 'W'>,
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01011][sensor.frigo_power-state]
|
||||||
|
StateSnapshot({
|
||||||
|
'attributes': ReadOnlyDict({
|
||||||
|
'device_class': 'power',
|
||||||
|
'friendly_name': 'Frigo Power',
|
||||||
|
'power_consumption_end': '2025-03-30T18:38:18Z',
|
||||||
|
'power_consumption_start': '2025-03-30T18:21:37Z',
|
||||||
|
'state_class': <SensorStateClass.MEASUREMENT: 'measurement'>,
|
||||||
|
'unit_of_measurement': <UnitOfPower.WATT: 'W'>,
|
||||||
|
}),
|
||||||
|
'context': <ANY>,
|
||||||
|
'entity_id': 'sensor.frigo_power',
|
||||||
|
'last_changed': <ANY>,
|
||||||
|
'last_reported': <ANY>,
|
||||||
|
'last_updated': <ANY>,
|
||||||
|
'state': '61',
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01011][sensor.frigo_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.frigo_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': '5758b2ec-563e-f39b-ec39-208e54aabf60_main_powerConsumptionReport_powerConsumption_powerEnergy_meter',
|
||||||
|
'unit_of_measurement': <UnitOfEnergy.KILO_WATT_HOUR: 'kWh'>,
|
||||||
|
})
|
||||||
|
# ---
|
||||||
|
# name: test_all_entities[da_ref_normal_01011][sensor.frigo_power_energy-state]
|
||||||
|
StateSnapshot({
|
||||||
|
'attributes': ReadOnlyDict({
|
||||||
|
'device_class': 'energy',
|
||||||
|
'friendly_name': 'Frigo Power energy',
|
||||||
|
'state_class': <SensorStateClass.TOTAL_INCREASING: 'total_increasing'>,
|
||||||
|
'unit_of_measurement': <UnitOfEnergy.KILO_WATT_HOUR: 'kWh'>,
|
||||||
|
}),
|
||||||
|
'context': <ANY>,
|
||||||
|
'entity_id': 'sensor.frigo_power_energy',
|
||||||
|
'last_changed': <ANY>,
|
||||||
|
'last_reported': <ANY>,
|
||||||
|
'last_updated': <ANY>,
|
||||||
|
'state': '0.0189117822202047',
|
||||||
|
})
|
||||||
|
# ---
|
||||||
# name: test_all_entities[da_rvc_normal_000001][sensor.robot_vacuum_battery-entry]
|
# name: test_all_entities[da_rvc_normal_000001][sensor.robot_vacuum_battery-entry]
|
||||||
EntityRegistryEntrySnapshot({
|
EntityRegistryEntrySnapshot({
|
||||||
'aliases': set({
|
'aliases': set({
|
||||||
|
Loading…
x
Reference in New Issue
Block a user