Tobias Vögeli
/
GRT_VC_PIDT1
pr7
EncoderCounter.h
- Committer:
- voegetob
- Date:
- 2019-05-14
- Revision:
- 2:1ded9d10f322
- Parent:
- 0:05dd1de8cc3f
File content as of revision 2:1ded9d10f322:
/* * EncoderCounter.h * Copyright (c) 2017, ZHAW * All rights reserved. */ #ifndef ENCODER_COUNTER_H_ #define ENCODER_COUNTER_H_ #include <cstdlib> #include <mbed.h> /** * This class implements a driver to read the quadrature * encoder counter of the STM32 microcontroller. */ class EncoderCounter { public: EncoderCounter(PinName a, PinName b); virtual ~EncoderCounter(); void reset(); void reset(short offset); short read(); operator short(); private: TIM_TypeDef* TIM; }; #endif /* ENCODER_COUNTER_H_ */