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: mbed HIDScope BiQuad4th_order biquadFilter MODSERIAL
Diff: main.cpp
- Revision:
- 2:e314bb3b2d99
- Parent:
- 1:db54d9412d18
- Child:
- 3:1296e996026a
--- a/main.cpp Thu May 23 13:33:19 2013 +0000
+++ b/main.cpp Fri May 31 08:33:42 2013 +0000
@@ -1,14 +1,27 @@
#include "mbed.h"
+//Classes
AnalogIn emg0(PTB0); //Analog input
PwmOut red(LED_RED); //PWM output
+Ticker timer;
+Serial pc(USBTX,USBRX);
+
+//Functions
+void looper()
+{
+ float emg_value;
+ red = emg_value = emg0;
+ pc.printf("%.6f\n",emg_value);
+}
int main()
{
+ pc.baud(115200);
+ red.period_ms(2);
+ timer.attach(looper, 0.001);
while(1) //Loop
{
- red = emg0;
- wait(0.01); //Looptime (approx)
+
}
}
\ No newline at end of file