AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

Revision:
11:50572814f73e
Parent:
5:be598835bab0
--- a/board/Buzzer.h	Sun Dec 14 11:50:19 2014 +0000
+++ b/board/Buzzer.h	Wed Dec 31 15:27:43 2014 +0000
@@ -6,8 +6,14 @@
 class Buzzer{
 
     public:
-    Buzzer(PinName buzzerPin);    
+    Buzzer(PinName buzzerPin);
+    void playNote(float frequency, float duration = 100, float volume = 1.0);
     void startupBeep();
+    
+    private:
+    
+    
+    PwmOut out;
 };
 
 #endif
\ No newline at end of file