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: HIDScope MODSERIAL QEI TextLCD mbed
Kalibratie.cpp
- Committer:
- RemcoDas
- Date:
- 2015-10-16
- Revision:
- 27:f62e450bb411
- Parent:
- 26:d9855716ced7
- Child:
- 30:8ae855348d22
File content as of revision 27:f62e450bb411:
#include "Kalibratie.h"
#include "Filterdesigns.h"
//#include "MODSERIAL.h" //bugfix
//AnalogIn emg2(A0); //Analog input van emg kabels
//MODSERIAL pc2(USBTX, USBRX); //bugfix
DigitalOut LedGreen(LED2);
DigitalOut LedRed(LED1);
int samples = 100;
void Init(){
LedGreen = 1;
LedRed = 1;
}
double KalibratieMax(AnalogIn& emg){ //Kalibratie van de maximum waarde
LedGreen.write(0); //Led aan
double ymax = 0;
for(int i = 1; i <= samples; i++) { //Als timer onder de 5 seconden is dit uitvoeren
double u = emg.read();
double y = Filterdesigns(u);
if (y > ymax && i >= samples / 10) { //Als de gemeten waarde groter is dan de opgeslagen waarde wordt dit de nieuwe opgeslagen waarde
ymax = y;
}
wait(0.05);
}
LedGreen.write(1); //Led aan
return ymax;
}
double KalibratieMin(AnalogIn& emg){ //Kalibratie van de minimum waarde
LedRed.write(0);
double ymin = 10;
for(int i = 1; i <= samples; i++) {
double u = emg.read();
double y = Filterdesigns(u);
if (y < ymin && i >= samples / 10) {
ymin = y;
}
wait(0.05);
}
LedRed.write(1);
return ymin;
}