Calibration code cleanup

This commit is contained in:
Mikael Degerfält 2019-03-04 21:49:34 +01:00
parent e448ba427c
commit 82b0f3a47c

View file

@ -495,10 +495,10 @@ void setup() {
//auto-calibrate the vibrato threshold while showing splash screen //auto-calibrate the vibrato threshold while showing splash screen
vibZero = breathCalZero = 0; vibZero = breathCalZero = 0;
const int sampleCount = 4; const int sampleCount = 4;
for(int i =0 ; i < sampleCount; ++i) { for(int i = 1 ; i <= sampleCount; ++i) {
vibZero += touchRead(vibratoPin); vibZero += touchRead(vibratoPin);
breathCalZero += analogRead(breathSensorPin); breathCalZero += analogRead(breathSensorPin);
digitalWrite( statusLedPin, 1-(i&1) ); digitalWrite( statusLedPin, i&1 );
delay(250); delay(250);
} }
vibZero /= sampleCount; vibZero /= sampleCount;