From d49314062b108a28849efd54d568707bdc607e0f Mon Sep 17 00:00:00 2001 From: kongo09 Date: Wed, 4 Dec 2024 09:59:58 +0100 Subject: [PATCH] fix some oscillation values --- custom_components/philips_airpurifier_coap/const.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/philips_airpurifier_coap/const.py b/custom_components/philips_airpurifier_coap/const.py index 92ca328..6fcda23 100644 --- a/custom_components/philips_airpurifier_coap/const.py +++ b/custom_components/philips_airpurifier_coap/const.py @@ -387,8 +387,8 @@ class PhilipsApi: SWITCH_OFF: 0, } OSCILLATION_MAP3 = { - SWITCH_ON: "45", - SWITCH_OFF: "0", + SWITCH_ON: 45, + SWITCH_OFF: 0, } # the AC1715 seems to follow a new scheme, this should later be refactored