🐛 TM3D fixes and improvements

Co-Authored-By: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
This commit is contained in:
Scott Lahteine
2021-07-12 22:52:17 -05:00
parent dd8ac689c3
commit bc459a76f4
6 changed files with 22 additions and 13 deletions

View File

@ -2417,13 +2417,15 @@ void Draw_HomeOff_Menu() {
#include "../../../libs/buzzer.h"
void HMI_AudioFeedback(const bool success=true) {
if (success) {
buzzer.tone(100, 659);
buzzer.tone(10, 0);
buzzer.tone(100, 698);
}
else
buzzer.tone(40, 440);
#if HAS_BUZZER
if (success) {
buzzer.tone(100, 659);
buzzer.tone(10, 0);
buzzer.tone(100, 698);
}
else
buzzer.tone(40, 440);
#endif
}
/* Prepare */