:)

Dependencies:   HIDScope MODSERIAL mbed-dsp mbed

Fork of emg_filter by Tanja H

Files at this revision

API Documentation at this revision

Comitter:
vsluiter
Date:
Thu May 23 10:59:03 2013 +0000
Child:
1:db54d9412d18
Commit message:
EMG demo program for KL25Z with EMG shield Olimex

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu May 23 10:59:03 2013 +0000
@@ -0,0 +1,14 @@
+#include "mbed.h"
+
+AnalogIn    emg0(PTB0);
+PwmOut      red(LED_RED);
+
+int main()
+{
+    while(1)
+    {
+        red = emg0;
+        wait(0.01);
+        
+    }
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Thu May 23 10:59:03 2013 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/b3110cd2dd17
\ No newline at end of file