Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: LSM9DS1 RangeFinder FastPWM
Dependents: PM2_Example_PES_board PM2_Example_PES_board PM2_Example_PES_board PM2_Example_PES_board ... more
EncoderCounter.h
- Committer:
- pmic
- Date:
- 2021-03-30
- Revision:
- 0:86129f1b4a93
- Child:
- 4:9c003c402033
File content as of revision 0:86129f1b4a93:
/*
* EncoderCounter.h
* Copyright (c) 2018, ZHAW
* All rights reserved.
*/
#ifndef ENCODER_COUNTER_H_
#define ENCODER_COUNTER_H_
#include <cstdlib>
#include <stdint.h>
#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(int16_t offset);
int16_t read();
operator int16_t();
private:
TIM_TypeDef* TIM;
};
#endif /* ENCODER_COUNTER_H_ */
