ReflowController/Software/reflowController/buzzer.ino

11 lines
134 B
C++

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