From 12553f160289717c89d98fd7c1067381a7f14d09 Mon Sep 17 00:00:00 2001 From: LiShuzhen Date: Tue, 25 Mar 2025 09:34:11 +0800 Subject: [PATCH] fix: cuco.plug.cp2 voltage and power value ratio --- custom_components/xiaomi_home/miot/specs/spec_modify.yaml | 8 ++++++++ custom_components/xiaomi_home/sensor.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/custom_components/xiaomi_home/miot/specs/spec_modify.yaml b/custom_components/xiaomi_home/miot/specs/spec_modify.yaml index 5988d79..3a75e05 100644 --- a/custom_components/xiaomi_home/miot/specs/spec_modify.yaml +++ b/custom_components/xiaomi_home/miot/specs/spec_modify.yaml @@ -121,3 +121,11 @@ urn:miot-spec-v2:device:outlet:0000A002:chuangmi-212a01:3: expr: round(src_value*6/1000000, 3) urn:miot-spec-v2:device:outlet:0000A002:chuangmi-212a01:1: urn:miot-spec-v2:device:outlet:0000A002:chuangmi-212a01:3 urn:miot-spec-v2:device:outlet:0000A002:chuangmi-212a01:2: urn:miot-spec-v2:device:outlet:0000A002:chuangmi-212a01:3 +urn:miot-spec-v2:device:outlet:0000A002:cuco-cp2:2: + prop.2.3: + expr: round(src_value/10, 1) + prop.2.4: + unit: mA + prop.3.2: + expr: round(src_value/10, 1) +urn:miot-spec-v2:device:outlet:0000A002:cuco-cp2:1: urn:miot-spec-v2:device:outlet:0000A002:cuco-cp2:2 \ No newline at end of file diff --git a/custom_components/xiaomi_home/sensor.py b/custom_components/xiaomi_home/sensor.py index fb9f30b..88cb063 100644 --- a/custom_components/xiaomi_home/sensor.py +++ b/custom_components/xiaomi_home/sensor.py @@ -110,7 +110,7 @@ class Sensor(MIoTPropertyEntity, SensorEntity): self._attr_native_unit_of_measurement = list( unit_sets)[0] if unit_sets else None # Set suggested precision - if spec.format_ in {int, float}: + if spec.format_ in {int, float} and spec.expr is None: self._attr_suggested_display_precision = spec.precision # Set state_class if spec.state_class: