Qubit 2020 / presensfirmwareupdate

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers buzzer.h Source File

buzzer.h

00001 #ifndef BUZZER_H
00002 #define BUZZER_H
00003 
00004 /**
00005  * Initialize buzzer.
00006  */
00007 void buzzerInit(void);
00008 
00009 /**
00010  * Generate beep.
00011  *
00012  * @param sec Beep duration in seconds.
00013  */
00014 void buzzerBeep(float sec);
00015 
00016 #endif