Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed TextLCD keypad
Buzzer.cpp
00001 #include "Buzzer.h" 00002 #include "mbed.h" 00003 00004 Buzzer::Buzzer(PinName buzzerPin) : out(buzzerPin){ 00005 out = 0.0; 00006 } 00007 00008 void Buzzer::startupBeep(){ 00009 00010 } 00011 00012 void Buzzer::playNote(float frequency, float duration, float volume){ 00013 out.period(1.0/frequency); 00014 out = volume/2.0; 00015 wait_ms(duration); 00016 out = 0.0; 00017 }
Generated on Tue Jul 12 2022 21:04:09 by
1.7.2
