Dit is alleen het EMG gedeelte

Dependencies:   mbed HIDScope biquadFilter MODSERIAL FXOS8700Q

main.cpp

Committer:
Jellehierck
Date:
2019-10-20
Revision:
6:5437cc97e1e6
Parent:
5:3d65f89e3755
Child:
7:7a088536f1c9

File content as of revision 6:5437cc97e1e6:

//c++ script for filtering of measured EMG signals
#include "mbed.h" //Base library
#include "HIDScope.h" // to see if program is working and EMG is filtered properly
// #include "QEI.h"// is needed for the encoder
// #include "MODSERIAL.h"// in order for connection with the pc
#include "BiQuad.h"
// #include "FastPWM.h"
// #include "Arduino.h" //misschien handig omdat we het EMG arduino board gebruiken (?)
// #include "EMGFilters.h"
#include <vector> // For easy array management

// PC serial connection
HIDScope        scope( 2 );
// MODSERIAL pc(USBTX, USBRX);

//EMG inputs definieren
AnalogIn emg1_in (A1); //emg van rechterbicep, voor de x-richting
AnalogIn emg2_in (A2); //emg van linkerbicep, voor de y-richting
AnalogIn emg3_in (A3); //emg van een derde (nog te bepalen) spier, voor het vernaderen van de richting

// LED
DigitalOut      led_g(LED_GREEN);
DigitalOut      led_r(LED_RED);

//variablen voor EMG
double emg1;
double emg2;
double emg3;
double notch1;
double notch2;
double notch3;
double highpass1;
double highpass2;
double highpass3;
double lowpass1;
double lowpass2;
double lowpass3;
double rectify1;
double rectify2;
double rectify3;

// Initialize tickers
Ticker tickSample;

// Sample rate
const double Fs = 500; //Hz

// Notch filter coefficients (iirnotch Q factor 35 @50Hz) from MATLAB in the following form:
// b01 b11 b21 a01 a11 a21
BiQuad bq_notch(0.995636295063941, -1.89829218816065,  0.995636295063941,  1,  -1.89829218816065,  0.991272590127882);

// Highpass filter coefficients (butter 4th order @10Hz cutoff) from MATLAB in the following form:
// b01 b11 b21 a01 a11 a21
// b02 b12 b22 a02 a12 a22
BiQuad bq_H1(0.922946103200875, -1.84589220640175,  0.922946103200875,  1,  -1.88920703055163,  0.892769008131025);
BiQuad bq_H2(1,                 -2,                 1,                  1,  -1.95046575793011,  0.954143234875078);
BiQuadChain bqc_notch_high; // Used to chain two 2nd other filters into a 4th order filter

// Lowpass filter coefficients (butter 4th order @5Hz cutoff) from MATLAB in the following form:
// b01 b11 b21 a01 a11 a21
// b02 b12 b22 a02 a12 a22
BiQuad bq_L1(5.32116245737504e-08,  1.06423249147501e-07,   5.32116245737504e-08,   1,  -1.94396715039462,  0.944882378004138);
BiQuad bq_L2(1,                     2,                      1,                      1,  -1.97586467534468,  0.976794920438162);
BiQuadChain bqc_low; // Used to chain two 2nd other filters into a 4th order filter

// Check if filters are stable
bool checkBQChainStable()
{
    bool n_hp_stable =  bqc_notch_high.stable();
    bool l_stable = bqc_low.stable();

    if (n_hp_stable && l_stable) {
        return true;
    } else {
        return false;
    }
}


// Read samples, filter samples and output to HIDScope
void sample()
{
    // Read EMG inputs
    emg1 = emg1_in.read();
    emg2 = emg2_in.read();
    emg3 = emg3_in.read();

    // Output raw EMG input
    scope.set(0, emg1 );

    // Filter notch and highpass
    double emg1_n_hp = bqc_notch_high.step( emg1 );

    // Rectify
    double emg1_rectify = fabs( emg1_n_hp );

    // Filter lowpass (completes envelope)
    double emg1_env = bqc_low.step( emg1_rectify );

    // Output EMG after filters
    scope.set(1, emg1_env );
    scope.send();
}

void main()
{
    // Initialize sample ticker
    const double Ts = 1/Fs;
    tickSample.attach(&sample, Ts);

    // Create BQ chains to reduce computations
    bqc_notch_high.add( &bq_notch ).add( &bq_H1 ).add( &bq_H2 );
    bqc_low.add( &bq_L1 ).add( &bq_L2 );

    // If any filter chain is unstable, red led will light up
    if (checkBQChainStable) {
        led_r = 1; // LED off
    } else {
        led_r = 0; // LED on
    }

    while(true) {
        
        // Show that system is running
        led_g = !led_g;
        wait(0.5);
    }
}