Skip to content

Commit 143d783

Browse files
committed
chore: policy min improve bumped to 25
1 parent 44710ee commit 143d783

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ fan_policy_cooldown: 900
440440
# voc index, 0 to disable, filter if any sensor meets this threshold
441441
fan_policy_voc_passive_max: 125
442442
# voc index, 0 to disable, filter if the intake exceeds exhaust by at least this much
443-
fan_policy_voc_improve_min: 5
443+
fan_policy_voc_improve_min: 25
444444
445445
# Fan Policy - Thermal Limit
446446
# Controls how/when the fan power is throttled down if the temperature is too high.

src/utility/fan_policy.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ struct FanPolicyEnvironmental {
1313
// How long to keep spinning after `should_filter` returns `false`
1414
BLE::TimeSecond16 cooldown = 60 * 15;
1515
VOCIndex voc_passive_max = 125; // <= max(intake, exhaust) -> filthy in here; get scrubbin'
16-
VOCIndex voc_improve_min = 5; // <= (intake - exhaust) -> things are improving, keep filtering
16+
VOCIndex voc_improve_min = 25; // <= (intake - exhaust) -> things are improving, keep filtering
1717

1818
struct Instance {
1919
FanPolicyEnvironmental const& params; // NOLINT(cppcoreguidelines-avoid-const-or-ref-data-members)

0 commit comments

Comments
 (0)