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
main.cpp
- Committer:
- vsluiter
- Date:
- 2013-05-31
- Revision:
- 2:e314bb3b2d99
- Parent:
- 1:db54d9412d18
- Child:
- 3:1296e996026a
File content as of revision 2:e314bb3b2d99:
#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
{
}
}