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.
Fork of encoder2 by
encoder2.h
- Committer:
- frute8
- Date:
- 2018-03-27
- Revision:
- 2:82a12d9f0bca
File content as of revision 2:82a12d9f0bca:
#ifndef ENCODER_H2 #define ENCODER_H2 #include "mbed.h" class Encoder2{ public : Encoder2(PinName APin, PinName BPin, PinName ZPin); int read_rotate(); int read_z(); void init(); private : InterruptIn A; DigitalIn B; DigitalIn Z; int count; int zcount; void flag(); }; #endif