Miscellaneous Library, read Encoder etc.
Unwrapper_2pi.h
- Committer:
- altb
- Date:
- 2019-03-06
- Revision:
- 1:c680da75a614
- Parent:
- 0:3312872854c4
File content as of revision 1:c680da75a614:
/* */ using namespace std; class Unwrapper_2pi { public: Unwrapper_2pi(void); float operator()(float in) { return doStep(in); } virtual ~Unwrapper_2pi(); void reset(void); float doStep(float inc); private: long turns; float last_value; };