Eindelijk!!!!!

Fork of SignalNumber2 by Peter Knoben

signalnumber.h

Committer:
peterknoben
Date:
2017-11-01
Revision:
3:f8d57796d69b
Parent:
2:1a677b57ce81
Child:
4:a79f9f3a9e40

File content as of revision 3:f8d57796d69b:

#ifndef _SIGNALNUMBER_H_INCLUDED_
#define _SIGNALNUMBER_H_INCLUDED_

#include "mbed.h"

class SignalNumber
{
public:
    /**
    *Constructor
    */
    SignalNumber(void);
    
    float calibrate(const int n, float input);
    
    float getsum(float array[], const int n);
    
    float getmean(const int n, float input);

    int getnumber(const int n, const int action, float input);
    
    int getmode(const int n, const int action, float input); // In progress


private:

};
#endif