-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathRotaryEncoder.h
More file actions
49 lines (35 loc) · 1.33 KB
/
RotaryEncoder.h
File metadata and controls
49 lines (35 loc) · 1.33 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
// -----
// 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 style license. See http://www.mathertel.de/License.aspx
// More information on: http://www.mathertel.de/Arduino
// -----
// 18.01.2014 created by Matthias Hertel
// -----
#ifndef RotaryEncoder_h
#define RotaryEncoder_h
#include "Arduino.h"
#define LATCHSTATE 3
class RotaryEncoder
{
public:
// ----- Constructor -----
RotaryEncoder(int pin1, int pin2);
// retrieve the current position
long getPosition();
// simple retrieve of the direction the knob was rotated at. 0 = No rotation, 1 = Clockwise, -1 = Counter Clockwise
int8_t 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);
private:
int _pin1, _pin2; // Arduino pins used for the encoder.
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)
};
#endif
// End