-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRotaryEncoder.h
More file actions
76 lines (58 loc) · 2.26 KB
/
RotaryEncoder.h
File metadata and controls
76 lines (58 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// -----
// RotaryEncoder.h - Library for using rotary encoders.
// This class is implemented for use with the Arduino environment.
//
// Copyright (c) by Matthias Hertel, http://www.mathertel.de
//
// This work is licensed under a BSD 3-Clause style license,
// https://www.mathertel.de/License.aspx.
//
// More information on: http://www.mathertel.de/Arduino
// -----
// 18.01.2014 created by Matthias Hertel
// 16.06.2019 pin initialization using INPUT_PULLUP
// 10.11.2020 Added the ability to obtain the encoder RPM
// 29.01.2021 Options for using rotary encoders with 2 state changes per latch.
// -----
#ifndef RotaryEncoder_h
#define RotaryEncoder_h
#include "Arduino.h"
class RotaryEncoder
{
public:
enum class Direction {
NOROTATION = 0,
CLOCKWISE = 1,
COUNTERCLOCKWISE = -1
};
enum class LatchMode {
FOUR3 = 1, // 4 steps, Latch at position 3 only (compatible to older versions)
FOUR0 = 2, // 4 steps, Latch at position 0 (reverse wirings)
TWO03 = 3 // 2 steps, Latch at position 0 and 3
};
// ----- Constructor -----
RotaryEncoder(int pin1, int pin2, LatchMode mode = LatchMode::FOUR0);
// retrieve the current position
long getPosition();
// simple retrieve of the direction the knob was rotated last time. 0 = No rotation, 1 = Clockwise, -1 = Counter Clockwise
Direction getDirection();
// adjust the current position
void setPosition(long newPosition);
// call this function every some milliseconds or by using an interrupt for handling state changes of the rotary encoder.
void tick(void);
// Returns the time in milliseconds between the current observed
unsigned long getMillisBetweenRotations() const;
// Returns the RPM
unsigned long getRPM();
private:
int _pin1, _pin2; // Arduino pins used for the encoder.
LatchMode _mode; // Latch mode from initialization
volatile int8_t _oldState;
volatile long _position; // Internal position (4 times _positionExt)
volatile long _positionExt; // External position
volatile long _positionExtPrev; // External position (used only for direction checking)
unsigned long _positionExtTime; // The time the last position change was detected.
unsigned long _positionExtTimePrev; // The time the previous position change was detected.
};
#endif
// End