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.
beep.cpp
00001 #include "mbed.h" 00002 #include "beep.h" 00003 00004 static const float delay = 1E-3; // 0.001 00005 00006 int main() 00007 { 00008 while (true) 00009 { 00010 if (button) 00011 { 00012 play_sound(speaker, delay); 00013 } 00014 } 00015 } 00016 00017 00018 void play_sound(DigitalOut& speaker, float delay) 00019 { 00020 speaker = 1; 00021 wait(delay); 00022 speaker = 0; 00023 wait(delay); 00024 }
Generated on Fri Jul 15 2022 02:26:22 by
1.7.2