const int buzzer = 5; void Buzzer_Init(void) { pinMode(buzzer, OUTPUT); tone(buzzer, 8000, 200); } void Buzzer_Task(void) { }