This repository has been archived on 2025-10-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2bki21/INF/beispiele/01.3_Buzzer/01.3_Buzzer.ino
2024-12-03 09:21:41 +01:00

17 lines
497 B
C++

/**********************************************************************
Product : Freenove 4WD Car for ESP32
Description : Use buzzer
Auther : www.freenove.com
Modification: 2020/12/18
**********************************************************************/
#include "Freenove_4WD_Car_For_ESP32.h"
void setup() {
Buzzer_Setup(); //Buzzer initialization function
Buzzer_Alert(4, 3);//Control the buzzer to sound 3 times, 4 sounds each time
}
void loop() {
delay(1000);
}