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: 4DGL-uLCD-SE PinDetect SDFileSystem mbed-rtos mbed wave_player
Fork of ECE2036Lab2StarterCode by
soundBuilder.h
00001 #include "Speaker.h" 00002 00003 class Note 00004 { 00005 public: 00006 // You create your own constructors and 00007 // member functions!! 00008 private: 00009 float freq; 00010 float length; 00011 float volume; 00012 }; 00013 00014 class SoundBuilder 00015 { 00016 public: 00017 // Set Sounds 00018 // Set Songs 00019 // Play Sounds 00020 // Play Songs 00021 // Clear Songs 00022 00023 private: 00024 Note song[20]; 00025 Speaker *speaker; 00026 00027 };
Generated on Tue Jul 19 2022 14:32:53 by
1.7.2
