From 8114d765f02e1dd31083fc05a54f8262fbdf725c Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Mon, 26 May 2025 11:57:51 -0400 Subject: [PATCH] Adjust ideal humidity levels I don't want to detract with 30-40 or 60-70% humidity. --- supersensor.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supersensor.yaml b/supersensor.yaml index b3f4873..fb0bb41 100644 --- a/supersensor.yaml +++ b/supersensor.yaml @@ -613,7 +613,7 @@ sensor: int iaq = id(iaq_index).state; bool temp_ok = (temp >= 18 && temp <= 24); - bool hum_ok = (rh >= 40 && rh <= 60); + bool hum_ok = (rh >= 30 && rh <= 70); bool iaq_ok = (iaq >= 4); int conditions_met = 0;