Adjust ideal humidity levels

I don't want to detract with 30-40 or 60-70% humidity.
This commit is contained in:
Joshua Boniface 2025-05-26 11:57:51 -04:00
parent d529f695a3
commit 8114d765f0

View File

@ -613,7 +613,7 @@ sensor:
int iaq = id(iaq_index).state; int iaq = id(iaq_index).state;
bool temp_ok = (temp >= 18 && temp <= 24); 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); bool iaq_ok = (iaq >= 4);
int conditions_met = 0; int conditions_met = 0;