From 861d1e1c4d2149f7b994d71f81058bedac95ad5b Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Mon, 20 Oct 2025 00:01:14 -0400 Subject: [PATCH] Increase possible humidity offsets and fix gain --- supersensor.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/supersensor.yaml b/supersensor.yaml index 0e6a621..3c7aa0f 100644 --- a/supersensor.yaml +++ b/supersensor.yaml @@ -441,7 +441,7 @@ micro_wake_word: id: mww microphone: microphone: mic - gain_factor: 64 + gain_factor: 2 stop_after_detection: false models: - model: github://joshuaboniface/Custom_V2_MicroWakeWords/models/computer/computer.json @@ -998,7 +998,7 @@ switch: number: # Temperature offset: - # A calibration from -30 to +5 for the temperature sensor + # A calibration from -30 to +10 for the temperature sensor - platform: template name: "Temperature Offset" id: temperature_offset_setter @@ -1014,12 +1014,12 @@ number: value: !lambda 'return float(x);' # Humidity offset: - # A calibration from -20 to +20 for the humidity sensor + # A calibration from -50 to +50 for the humidity sensor - platform: template name: "Humidity Offset" id: humidity_offset_setter - min_value: -20 - max_value: 20 + min_value: -50 + max_value: 50 step: 0.1 lambda: |- return id(humidity_offset);