Skip to content

Commit

Permalink
chore(sensors): sensor fallback off by default
Browse files Browse the repository at this point in the history
  • Loading branch information
SanaaHamel committed Sep 21, 2023
1 parent 5ad972b commit 0967a06
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 @@ -459,7 +459,7 @@ fan_thermal_limit_coefficient: 0
# report the value from the other side (if available).
# Useful for builds where you only have one temperature or humidity sensor,
# and you want to use it for both intake/exhaust.
sensors_fallback: true
sensors_fallback: false
# Use the MCU's temperature as an exhaust temperature fallback.
# Only useful for filters which have the MCU in the exhaust airflow (e.g. StealthMax)
Expand Down
2 changes: 1 addition & 1 deletion src/sensors.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ BLE_DECL_SCALAR_OPTIONAL(VOCRaw, uint16_t, 1, 0, 0, 0xFFFFu); // range [0, 2^16

struct Config {
// If a sensor in a `FilterSide` is missing, then try to fall back to the other side's sensor.
bool fallback = true;
bool fallback = false;
// StealthMax MCU is positioned inside the exhaust airflow.
// Disabled by default because not all Nevermores are StealthMaxes.
bool fallback_exhaust_mcu = false;
Expand Down

0 comments on commit 0967a06

Please sign in to comment.