biorobotics group 19 , 2 november

Fork of SigInterpreterv2 by Fabian van Hummel

SigInterpreter.h

Committer:
fabian101
Date:
2016-11-02
Revision:
3:096e6a7bd90b
Parent:
2:ad96602f71c0

File content as of revision 3:096e6a7bd90b:

#ifndef SIGINTERPRETER_H
#define SIGINTERPRETER_H

#include "initialize.h"

class SigInterpreter {

public:

    SigInterpreter();
    float readValue(int);
    float filter1(float);
    float filter2(float);
    float filter3(float);
    float filter4(float);

private:
    float highpass1;
    float highpass2;
    float rect;
    float lowpass1;
    float lowpass2;
    float lowpass3;
};
#endif /* SIGINTERPRETER_H */