Skip to content

Commit

Permalink
chore: policy min improve bumped to 25
Browse files Browse the repository at this point in the history
  • Loading branch information
SanaaHamel committed Nov 7, 2023
1 parent 44710ee commit 143d783
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ fan_policy_cooldown: 900
# voc index, 0 to disable, filter if any sensor meets this threshold
fan_policy_voc_passive_max: 125
# voc index, 0 to disable, filter if the intake exceeds exhaust by at least this much
fan_policy_voc_improve_min: 5
fan_policy_voc_improve_min: 25
# Fan Policy - Thermal Limit
# Controls how/when the fan power is throttled down if the temperature is too high.
Expand Down
2 changes: 1 addition & 1 deletion src/utility/fan_policy.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ struct FanPolicyEnvironmental {
// How long to keep spinning after `should_filter` returns `false`
BLE::TimeSecond16 cooldown = 60 * 15;
VOCIndex voc_passive_max = 125; // <= max(intake, exhaust) -> filthy in here; get scrubbin'
VOCIndex voc_improve_min = 5; // <= (intake - exhaust) -> things are improving, keep filtering
VOCIndex voc_improve_min = 25; // <= (intake - exhaust) -> things are improving, keep filtering

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

0 comments on commit 143d783

Please sign in to comment.