From 8e05e457c53b8d506419f71d59c764c7ab89b3a4 Mon Sep 17 00:00:00 2001 From: wrfz <77174685+wrfz@users.noreply.github.com> Date: Fri, 6 Dec 2024 17:43:48 +0100 Subject: [PATCH] Fixed EEV max value 100% is now 500pls --- components/daikin_rotex_uart/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/daikin_rotex_uart/__init__.py b/components/daikin_rotex_uart/__init__.py index f558888..d03e0e0 100644 --- a/components/daikin_rotex_uart/__init__.py +++ b/components/daikin_rotex_uart/__init__.py @@ -175,7 +175,7 @@ def get_fan_divider(): "offset": 3, "signed": False, "dataSize": 2, - "divider": 450.0 / 100.0, + "divider": 500.0 / 100.0, # 500pls = 100% "endian": Endian.LITTLE, "unit_of_measurement": UNIT_PERCENT, "state_class": STATE_CLASS_MEASUREMENT,