Increase duration of chirp sound in playChirp

This commit is contained in:
Ben Meadors
2026-01-08 08:13:57 -06:00
committed by GitHub
parent 01ed5041df
commit 978922296b

View File

@@ -113,7 +113,7 @@ void playShutdownMelody()
void playChirp()
{
// A short, friendly "chirp" sound for key presses
ToneDuration melody[] = {{NOTE_AS3, 18}}; // Short AS3 note
ToneDuration melody[] = {{NOTE_AS3, 20}}; // Short AS3 note
playTones(melody, sizeof(melody) / sizeof(ToneDuration));
}