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.
Fork of beep by
Revision 5:27d5dc3f6e8b, committed 2015-02-10
- Comitter:
- tsoic
- Date:
- Tue Feb 10 12:35:05 2015 +0000
- Parent:
- 4:d8e14429a95f
- Commit message:
- added piezo speaker and sound effects
Changed in this revision
beep.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/beep.cpp Tue Sep 11 08:21:45 2012 +0000 +++ b/beep.cpp Tue Feb 10 12:35:05 2015 +0000 @@ -47,7 +47,7 @@ void Beep::beep(float freq, float time) { _pwm.period(1.0/freq); - _pwm.write(0.5); // 50% duty cycle - beep on + _pwm.write(0.2); // 50% duty cycle - beep on toff.attach(this,&Beep::nobeep, time); // time to off }