🧑‍💻 Add standard BUZZ types

This commit is contained in:
Scott Lahteine
2022-03-12 16:34:58 -06:00
parent 0bf319c57a
commit 89a9c3a391
9 changed files with 36 additions and 59 deletions

View File

@@ -1285,17 +1285,7 @@ void HMI_Printing() {
#include "../../../libs/buzzer.h"
void HMI_AudioFeedback(const bool success/*=true*/) {
#if HAS_BUZZER
if (success) {
BUZZ(100, 659);
BUZZ(10, 0);
BUZZ(100, 698);
}
else
BUZZ(40, 440);
#endif
}
void HMI_AudioFeedback(const bool success/*=true*/) { DONE_BUZZ(success); }
void Draw_Main_Area() {
switch (checkkey) {