Disable voltage lpf by default

Filtering does more harm than good in voltage monitoring.
(alpha = 1 efficiently disables the filter.)
This commit is contained in:
Oleg Kalachev
2026-08-03 15:57:29 +03:00
parent 406f7a4af5
commit a5991930d1
+1 -1
View File
@@ -9,7 +9,7 @@
#include "util.h"
float voltage = NAN;
LowPassFilter<float> voltageFilter(0.2);
LowPassFilter<float> voltageFilter(1);
int voltagePin = -1;
float voltageScale = 2;