AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

board/Buzzer.cpp

Committer:
sillevl
Date:
2014-12-14
Revision:
10:afc22465169e
Parent:
5:be598835bab0
Child:
11:50572814f73e

File content as of revision 10:afc22465169e:

#include "Buzzer.h"
#include "mbed.h"

Buzzer::Buzzer(PinName buzzerPin){
    DigitalOut buzzer(buzzerPin);
    buzzer = 0;
}

void Buzzer::startupBeep(){
    
}