Cube_Mini_Solution
Dependencies: mbed QEI MPU6050 BLE_API nRF51822 MCP4725 eMPL_MPU6050
LinearCharacteristics.h
- Committer:
- BoulusAJ
- Date:
- 2020-05-29
- Revision:
- 18:3b1aa67e11ca
- Parent:
- 0:8e87cdf07037
File content as of revision 18:3b1aa67e11ca:
// Linear Characteristics for different purposes (map Voltage to acc etc.) #ifndef LINEAR_CHARACTERISTICS_H_ #define LINEAR_CHARACTERISTICS_H_ class LinearCharacteristics{ public: LinearCharacteristics(){}; LinearCharacteristics(float, float); LinearCharacteristics(float, float, float, float); LinearCharacteristics(float, float, float, float, float, float); float evaluate(float); void setup(float, float, float, float); void setup(float, float, float, float, float, float); float operator()(float x){ return evaluate(x); } //... virtual ~LinearCharacteristics(); // here: the calculation function private: // here: private functions and values... float gain; float offset; float ulim; float llim; }; #endif // LINEAR_CHARACTERISTICS_H_