From f40fbb9db339095f4c252eb034aa866195c6ea63 Mon Sep 17 00:00:00 2001 From: itsmesid <693151+arevindh@users.noreply.github.com> Date: Sun, 14 Jul 2024 07:16:26 +0530 Subject: [PATCH] Set max temp kelvin to 6952 --- custom_components/tinxy/light.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/tinxy/light.py b/custom_components/tinxy/light.py index 2f5c143..570aae8 100644 --- a/custom_components/tinxy/light.py +++ b/custom_components/tinxy/light.py @@ -111,7 +111,7 @@ def available(self) -> bool: @property def max_color_temp_kelvin (self) -> int: """Max Color temperature in kelin""" - return 7000 + return 6952 @property def min_color_temp_kelvin (self) -> int: