diff options
Diffstat (limited to 'rotaryencoder.h')
| -rw-r--r-- | rotaryencoder.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/rotaryencoder.h b/rotaryencoder.h new file mode 100644 index 0000000..f2f9b76 --- /dev/null +++ b/rotaryencoder.h @@ -0,0 +1,12 @@ +#pragma once + +#include <cstdint> + +class rotaryencoder +{ +public: + rotaryencoder(); + +public: + int64_t position() const; +}; |
