Browse Source

Merge pull request #376 from liamcottle/fix/buzzer-power-draw

Fix Buzzer Power Draw
pull/367/head
ripplebiz 1 year ago
committed by GitHub
parent
commit
e0483c0c82
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      src/helpers/ui/buzzer.cpp

1
src/helpers/ui/buzzer.cpp

@ -11,6 +11,7 @@ void genericBuzzer::begin() {
quiet(false);
pinMode(PIN_BUZZER, OUTPUT);
digitalWrite(PIN_BUZZER, LOW); // need to pull low by default to avoid extreme power draw
startup();
}

Loading…
Cancel
Save