-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuadEncoder.cpp
More file actions
141 lines (129 loc) · 1.71 KB
/
QuadEncoder.cpp
File metadata and controls
141 lines (129 loc) · 1.71 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/*
QuadEncoder.cpp
Copyright (c) 2014 Aaditya Dengle.
*/
#include "Arduino.h"
#include "QuadEncoder.h"
#include "digitalWriteFast/digitalWriteFast.h"//<digitalWriteFast/digitalWriteFast.h>
#include <stdint.h>
int _State;
int _lState;
uint8_t _pinA;
uint8_t _pinB;
uint8_t _intA;
uint8_t _intB;
long ReadCount();
void SetCount(long NewCount);
void Reset();
long Count = 0;
void CheckState();
QuadEncoder::QuadEncoder(uint8_t pinA, uint8_t pinB)
{
_State=0;
_lState=0;
pinMode(pinA, INPUT_PULLUP);
_pinA = pinA;
pinMode(pinB, INPUT_PULLUP);
_pinB = pinB;
switch (pinA) {
case 2:{
_intA = 0;
}
case 3:{
_intA = 1;
}
case 21:{
_intA = 2;
}
case 20:{
_intA = 3;
}
case 19:{
_intA = 4;
}
case 18:{
_intA = 5;
}
}
switch (pinB) {
case 2:{
_intB = 0;
}
case 3:{
_intB = 1;
}
case 21:{
_intB = 2;
}
case 20:{
_intB = 3;
}
case 19:{
_intB = 4;
}
case 18:{
_intB = 5;
}
}
attachInterrupt (_intA,CheckState,CHANGE);
}
void CheckState()
{
_lState = _State;
_State = _State << digitalReadFast2(_pinA);
_State = _State << digitalReadFast2(_pinB);
switch (_State){
case 0:{
if (_lState==8){
Count++;
}
if (_lState==1){
Count--;
}
}
case 1:{
if (_lState==0){
Count++;
}
if (_lState==7){
Count--;
}
}
case 7:{
if (_lState==1){
Count++;
}
if (_lState==14){
Count--;
}
}
case 14:{
if (_lState==7){
Count++;
}
if (_lState==8){
Count--;
}
}
case 8:{
if (_lState==14){
Count++;
}
if (_lState==0){
Count--;
}
}
}
}
void Reset()
{
Count=0;
}
void SetCount(long NewCount)
{
Count=NewCount;
}
long ReadCount()
{
return Count;
}