Skip to content

Commit

Permalink
Attempt to even decrease a click treshold.
Browse files Browse the repository at this point in the history
  • Loading branch information
kaklik committed Mar 29, 2024
1 parent 2af6641 commit a3d49bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fw/AIRDOS04/AIRDOS04.ino
Original file line number Diff line number Diff line change
Expand Up @@ -968,7 +968,7 @@ void loop()

adcVal >>= 6;

if (adcVal>5) digitalWrite(BUZZER, HIGH); // buzzer click on ADC conversion.
if (adcVal>3) digitalWrite(BUZZER, HIGH); // buzzer click on ADC conversion.
if (histogram[adcVal]<255) histogram[adcVal]++;
digitalWrite(DRESET, HIGH);

Expand Down

0 comments on commit a3d49bf

Please sign in to comment.