EMG+filter

Dependencies:   mbed HIDScope biquadFilter biquad

main.cpp

Committer:
Rosalie
Date:
2019-10-15
Revision:
22:782e4eac9796
Parent:
21:7932900d6e3b
Child:
23:71103eda6fa2

File content as of revision 22:782e4eac9796:

#include "mbed.h"
#include "HIDScope.h"
#include "BiQuad.h"

//Define objects
AnalogIn    emg0( A0 );
AnalogIn    emg1( A1 );

Ticker      sample_timer;
HIDScope    scope( 2 );
DigitalOut  led(LED1);

BiQuadChain bqc;
BiQuad bq1(b0, b1, b2, a1, a2); //bijvoorbeeld van rechterbiceps
BiQuad bq2(b00, b11, b22, a11, a22); //bijvoorbeeld van linkerbiceps

Ticker emgSampleTicker;
AnalogIn emg(A0); //kloptA0 wel??

/** Sample function
 * this function samples the emg and sends it to HIDScope
 **/
void sample()
{
    /* Set the sampled emg values in channel 0 (the first channel) and 1 (the second channel) in the 'HIDScope' instance named 'scope' */
    scope.set(0, emg0.read() );
    scope.set(1, emg1.read() );
    /* Repeat the step above if required for more channels of required (channel 0 up to 5 = 6 channels) 
    *  Ensure that enough channels are available (HIDScope scope( 2 ))
    *  Finally, send all channels to the PC at once */
    scope.send();
    /* To indicate that the function is working, the LED is toggled */
    led = !led;
}





void emgSample()
{   
    double emgFiltered=bqc.step(emg.read());
}




int main()
{   
    /**Attach the 'sample' function to the timer 'sample_timer'.
    * this ensures that 'sample' is executed every... 0.002 seconds = 500 Hz
    */
    sample_timer.attach(&sample, 0.002f);
    bqc.add(&bq1).add(&bq2);
    emgSampleTicker.attach(&emgSample,0.01);

    /*empty loop, sample() is executed periodically*/
    while(1) {
        wait(0.1f);
        }
}