Library to add minimum/maximum functions for analog values
analogMinMax.h
- Committer:
- masterkookus
- Date:
- 2019-10-07
- Revision:
- 1:4c3825c62e96
- Parent:
- 0:cdaabb616422
File content as of revision 1:4c3825c62e96:
#ifndef MKANAMM_H #define MKANAMM_H class analogMinMax { float minLimVal; float maxLimVal; bool maxLim; bool minLim; bool maxSet; bool minSet; float maxVal; float minVal; float nomVal; public: analogMinMax(float, bool, bool, float, bool, bool, float); void putVal(float); float getMin(void); float getMax(void); void resetNum(void); }; #endif