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: MovingAverage mbed HIDScope biquadFilter
main.cpp
- Committer:
- aschut
- Date:
- 2019-04-16
- Revision:
- 28:21746a69e96a
- Parent:
- 27:c0d748b7d5d1
- Child:
- 29:86ef596c9e70
File content as of revision 28:21746a69e96a:
#include "mbed.h" #include "HIDScope.h" #include "BiQuad.h" #include <iostream> //test double emg1_highpassed; DigitalOut led1(LED_GREEN); DigitalOut led2(LED_RED); DigitalOut led3(LED_BLUE); // Tickers Ticker sample_ticker; //ticker voor filteren met 1000Hz Ticker threshold_check_ticker; //ticker voor het checken van de threshold met 1000Hz Timer timer_calibration; //timer voor EMG Kalibratie double ts = 0.0005; //tijdsstap !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! double calibration_time = 37; //Kalibratie tijd //Input AnalogIn emg1( A1 ); AnalogIn emg2( A2 ); AnalogIn emg3( A3 ); AnalogIn emg4( A4 ); // GLOBALS EMG //Gefilterde EMG signalen volatile double emg1_filtered, emg2_filtered, emg3_filtered, emg4_filtered; bool thresholdreach1 = false; bool thresholdreach2 = false; bool thresholdreach3 = false; bool thresholdreach4 = false; volatile double temp_highest_emg1 = 0; //Hoogste waarde gevonden tijdens kalibratie volatile double temp_highest_emg2 = 0; volatile double temp_highest_emg3 = 0; volatile double temp_highest_emg4 = 0; //Percentage van de hoogste waarde waar de bovenste treshold gezet moet worden double Duim_p_t = 0.5; double Bicep_p_t = 0.5; double Dorsaal_p_t = 0.5; double Palmair_p_t = 0.5; //Percentage van de hoogste waarde waar de onderste treshold gezet moet worden double Duim_p_tL = 0.5; double Bicep_p_tL = 0.5; double Dorsaal_p_tL = 0.5; double Palmair_p_tL = 0.5; // Waarde bovenste treshold waar het signaal overheen moet om de arm te activeren volatile double threshold1; volatile double threshold2; volatile double threshold3; volatile double threshold4; // Waarde onderste treshold waar het signaal onder moet om de arm te deactiveren volatile double threshold1L; volatile double threshold2L; volatile double threshold3L; volatile double threshold4L; // thresholdreads bools int Duim; int Bicep; int Dorsaal; int Palmair; // EMG OUTPUT int EMGxplus; int EMGxmin ; int EMGyplus; int EMGymin ; //EMG1!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! //Highpass vierde orde cutoff 20Hz, Band filter om 49, 50, 51Hz eruit te filteren BiQuadChain highnotch1; BiQuad highp1_1( 0.8485, -1.6969, 0.8485, 1.0000, -1.7783, 0.7924 ); BiQuad highp1_2( 1.0000, -2.0000, 1.0000, 1.0000, -1.8934, 0.9085 ); BiQuad notch1_1( 0.9907, -1.8843, 0.9907, 1.0000, -1.8843, 0.9813 ); //Lowpass first order cutoff 0.4Hz BiQuad lowp1( 0.0013, 0.0013, 0, 1.0000, -0.9975, 0 ); //EMG2!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! //Highpass BiQuadChain highp2; BiQuad highp2_1( 9.21171e-01, -1.84234e+00, 9.21171e-01, -1.88661e+00, 8.90340e-01 ); BiQuad highp2_2( 1.00000e+00, -2.00000e+00, 1.00000e+00, -1.94922e+00, 9.53070e-01 ); //Notch BiQuadChain notch2; BiQuad notch2_1( 9.56543e-01, -1.82035e+00, 9.56543e-01, -1.84459e+00, 9.53626e-01 ); BiQuad notch2_2( 1.00000e+00, -1.90305e+00, 1.00000e+00, -1.87702e+00, 9.59471e-01 ); //Lowpass 4th order cutoff 3Hz BiQuadChain lowp2; BiQuad lowp2_1( 7.69910e-09, 1.53982e-08, 7.69910e-09, -1.96542e+00, 9.65769e-01 ); BiQuad lowp2_2( 1.00000e+00, 2.00000e+00, 1.00000e+00, -1.98532e+00, 9.85677e-01 ); //EMG3!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! //Highpass BiQuadChain highp3; BiQuad highp3_1( 9.21171e-01, -1.84234e+00, 9.21171e-01, -1.88661e+00, 8.90340e-01 ); BiQuad highp3_2( 1.00000e+00, -2.00000e+00, 1.00000e+00, -1.94922e+00, 9.53070e-01 ); //Notch BiQuadChain notch3; BiQuad notch3_1( 9.56543e-01, -1.82035e+00, 9.56543e-01, -1.84459e+00, 9.53626e-01 ); BiQuad notch3_2( 1.00000e+00, -1.90305e+00, 1.00000e+00, -1.87702e+00, 9.59471e-01 ); //Lowpass 4th order cutoff 3Hz BiQuadChain lowp3; BiQuad lowp3_1( 7.69910e-09, 1.53982e-08, 7.69910e-09, -1.96542e+00, 9.65769e-01 ); BiQuad lowp3_2( 1.00000e+00, 2.00000e+00, 1.00000e+00, -1.98532e+00, 9.85677e-01 ); //EMG4!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! //Highpass BiQuadChain highp4; BiQuad highp4_1( 9.21171e-01, -1.84234e+00, 9.21171e-01, -1.88661e+00, 8.90340e-01 ); BiQuad highp4_2( 1.00000e+00, -2.00000e+00, 1.00000e+00, -1.94922e+00, 9.53070e-01 ); //Notch BiQuadChain notch4; BiQuad notch4_1( 9.56543e-01, -1.82035e+00, 9.56543e-01, -1.84459e+00, 9.53626e-01 ); BiQuad notch4_2( 1.00000e+00, -1.90305e+00, 1.00000e+00, -1.87702e+00, 9.59471e-01 ); //Lowpass 4th order cutoff 3Hz BiQuadChain lowp4; BiQuad lowp4_1( 7.69910e-09, 1.53982e-08, 7.69910e-09, -1.96542e+00, 9.65769e-01 ); BiQuad lowp4_2( 1.00000e+00, 2.00000e+00, 1.00000e+00, -1.98532e+00, 9.85677e-01 ); // ~~~~~~~~~~~~~~~~~~~EMG FUNCTIONS~~~~~~~~~~~~~~~~~~ void emgsample() { //All EMG signal through Highpass double emgread1 = emg1.read(); double emgread2 = emg1.read(); //////////////////////////PROEF double emgread3 = emg3.read(); double emgread4 = emg4.read(); double emg1_highpassed = highnotch1.step(emgread1); double emg2_highpassed = highp2.step(emgread2); double emg3_highpassed = highp3.step(emgread3); double emg4_highpassed = highp4.step(emgread4); //All EMG highpassed through Notch //double emg1_notched = notch1.step(emg1_highpassed); double emg2_notched = notch2.step(emg2_highpassed); double emg3_notched = notch3.step(emg3_highpassed); double emg4_notched = notch4.step(emg4_highpassed); //All EMG notched rectify double emg1_abs = abs(emg1_highpassed); double emg2_abs = abs(emg2_notched); double emg3_abs = abs(emg3_notched); double emg4_abs = abs(emg4_notched); //All EMG abs into lowpass double emg1_filtered = lowp1.step(emg1_abs); double emg2_filtered = lowp2.step(emg2_abs); double emg3_filtered = lowp3.step(emg3_abs); double emg4_filtered = lowp4.step(emg4_abs); } void CalibrationEMG() { while(timer_calibration<55) { //Duim if(timer_calibration>0 && timer_calibration<7) { led1=!led1; if(emg1_filtered>temp_highest_emg1) { temp_highest_emg1= emg1_filtered; } } if(timer_calibration>7 && timer_calibration<10) { led1=0; led2=0; led3=0; } if(timer_calibration>10 && timer_calibration<17) { //Bicep led2=!led2; if(emg2_filtered>temp_highest_emg2) { temp_highest_emg2= emg2_filtered; } } if(timer_calibration>17 && timer_calibration<20) { led1=0; led2=0; led3=0; } if(timer_calibration>20 && timer_calibration<27) { //Dorsaal led3=!led3; if(emg3_filtered>temp_highest_emg3) { temp_highest_emg3= emg3_filtered; } } if(timer_calibration>27 && timer_calibration<30) { led1=0; led2=0; led3=0; } if(timer_calibration>30 && timer_calibration<37) { //Palmair led2=!led2; led3=!led3; if(emg4_filtered>temp_highest_emg4) { temp_highest_emg4= emg4_filtered; } } led1=1; led2=1; led3=1; } threshold1 = temp_highest_emg1*Duim_p_t; threshold2 = temp_highest_emg2*Bicep_p_t; threshold3 = temp_highest_emg3*Dorsaal_p_t; threshold4 = temp_highest_emg4*Palmair_p_t; threshold1L = temp_highest_emg1*Duim_p_tL; threshold2L = temp_highest_emg2*Bicep_p_tL; threshold3L = temp_highest_emg3*Dorsaal_p_tL; threshold4L = temp_highest_emg4*Palmair_p_tL; } //Check of emg_filtered boven de threshold is void threshold_check() { // EMG1 Check if (thresholdreach1 == false){ //Als emg_filtered nog niet boven de bovenste threshold is geweest //bovenste threshold check if(emg1_filtered>threshold1) { Duim = 1; thresholdreach1 = true; } else { Duim= 0; } } else{ //Als emg_filtered boven de bovenste threshold is geweest //onderste threshold check if(emg1_filtered<threshold1L) { Duim = 0; thresholdreach1 = false; } else { Duim= 1; } } // EMG2 Check if (thresholdreach2 == false){ //Als emg_filtered nog niet boven de bovenste threshold is geweest //bovenste threshold check if(emg2_filtered>threshold2) { Bicep = 1; thresholdreach2 = true; } else { Bicep= 0; } } else{ //Als emg_filtered boven de bovenste threshold is geweest //onderste threshold check if(emg2_filtered<threshold2L) { Bicep = 0; thresholdreach2 = false; } else { Bicep= 1; } } // EMG3 Check if (thresholdreach3 == false){ //Als emg_filtered nog niet boven de bovenste threshold is geweest //bovenste threshold check if(emg3_filtered>threshold3) { Dorsaal = 1; thresholdreach3 = true; } else { Dorsaal= 0; } } else{ //Als emg_filtered boven de bovenste threshold is geweest //onderste threshold check if(emg3_filtered<threshold3L) { Dorsaal = 0; thresholdreach3 = false; } else { Dorsaal= 1; } } // EMG4 Check if (thresholdreach4 == false){ //Als emg_filtered nog niet boven de bovenste threshold is geweest //bovenste threshold check if(emg4_filtered>threshold4) { Palmair = 1; thresholdreach4 = true; } else { Palmair= 0; } } else{ //Als emg_filtered boven de bovenste threshold is geweest //onderste threshold check if(emg4_filtered<threshold4L) { Palmair = 0; thresholdreach4 = false; } else { Palmair= 1; } } } Ticker sample_timer; HIDScope scope( 4 ); DigitalOut led(LED1); void sample() { scope.set(0, emg1.read() ); scope.set(1, emg1_highpassed); scope.set(2, emg3.read() ); scope.set(3, emg3_filtered); scope.send(); led = !led; } int main() { sample_ticker.attach(&emgsample, ts); //BiQuad Chain add highnotch1.add( &highp1_1 ).add( &highp1_2 ); //notch1.add( ¬ch1_1 ).add( ¬ch1_2 ); //lowp1.add( &lowp1_1 ).add(&lowp1_2); highp2.add( &highp2_1 ).add( &highp2_2 ); notch2.add( ¬ch2_1 ).add( ¬ch2_2 ); lowp2.add( &lowp2_1 ).add(&lowp2_2); highp3.add( &highp3_1 ).add( &highp3_2 ); notch3.add( ¬ch3_1 ).add( ¬ch3_2 ); lowp3.add( &lowp3_1 ).add(&lowp3_2); highp4.add( &highp4_1 ).add( &highp4_2 ); notch4.add( ¬ch4_1 ).add( ¬ch4_2 ); lowp4.add( &lowp4_1 ).add(&lowp4_2); sample_timer.attach(&sample, 0.001); temp_highest_emg1 = 0; //highest detected value right Biceps temp_highest_emg2 = 0; temp_highest_emg3 = 0; temp_highest_emg4 = 0; timer_calibration.reset(); timer_calibration.start(); //CalibrationEMG(); //threshold_check_ticker.attach(&threshold_check, 0.001); //sample_ticker.detach(); //timer_calibration.stop(); /*empty loop, sample() is executed periodically*/ while(1) { wait(0.01); } }