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.
Revision 0:e6c90c4a7893, committed 2015-04-30
- Comitter:
- bridadan
- Date:
- Thu Apr 30 19:56:54 2015 +0000
- Commit message:
- Initial commit
Changed in this revision
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ISD1820P.lib Thu Apr 30 19:56:54 2015 +0000 @@ -0,0 +1,1 @@ +http://developer.mbed.org/users/bridadan/code/ISD1820P/#19584eb1fdf7
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Thu Apr 30 19:56:54 2015 +0000
@@ -0,0 +1,19 @@
+#include "mbed.h"
+#include "ISD1820P.h"
+
+InterruptIn recordButton(SW2);
+InterruptIn playButton(SW3);
+
+ISD1820P recorder(D3, D2);
+
+DigitalOut led(LED_RED, 1);
+
+int main()
+{
+ recordButton.rise(&recorder, &ISD1820P::startRecordingMaxTime);
+ playButton.rise(&recorder, &ISD1820P::startPlayingMaxTime);
+
+ while (true) {
+ wait(2.0f);
+ }
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Thu Apr 30 19:56:54 2015 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/8ab26030e058 \ No newline at end of file
Grove Recorder