Allan Brignoli
/
Rome2_P6
gugus
EncoderCounter.h
- Committer:
- Brignall
- Date:
- 2018-05-18
- Revision:
- 0:1a0321f1ffbc
File content as of revision 0:1a0321f1ffbc:
/* * EncoderCounter.h * Copyright (c) 2018, 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_ */