Created
January 22, 2018 05:02
-
-
Save legomushroom/1b0ba79851a549048f6ab302700be796 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
(Copy and paste) | |
Rotary encoder decoding using two interrupt lines. | |
Most Arduino boards have two external interrupts, | |
numbers 0 (on digital pin 2) and 1 (on digital pin 3). | |
Program sketch is for SparkFun Rotary Encoder sku: COM-09117 | |
Connect the middle pin of the three to ground. | |
The outside two pins of the three are connected to | |
digital pins 2 and 3 | |
*/ | |
volatile int number = 0; // Testnumber, print it when it changes value, | |
// used in loop and both interrupt routines | |
int oldnumber = number; | |
volatile boolean halfleft = false; // Used in both interrupt routines | |
volatile boolean halfright = false; | |
void setup(){ | |
Serial.begin(9600); | |
pinMode(2, INPUT); | |
digitalWrite(2, HIGH); // Turn on internal pullup resistor | |
pinMode(3, INPUT); | |
digitalWrite(3, HIGH); // Turn on internal pullup resistor | |
attachInterrupt(0, isr_2, FALLING); // Call isr_2 when digital pin 2 goes LOW | |
attachInterrupt(1, isr_3, FALLING); // Call isr_3 when digital pin 3 goes LOW | |
} | |
void loop(){ | |
if(number != oldnumber){ // Change in value ? | |
Serial.println(number); // Yes, print it (or whatever) | |
oldnumber = number; | |
} | |
} | |
void isr_2(){ // Pin2 went LOW | |
delay(1); // Debounce time | |
if(digitalRead(2) == LOW){ // Pin2 still LOW ? | |
if(digitalRead(3) == HIGH && halfright == false){ // --> | |
halfright = true; // One half click clockwise | |
} | |
if(digitalRead(3) == LOW && halfleft == true){ // <-- | |
halfleft = false; // One whole click counter- | |
number--; // clockwise | |
} | |
} | |
} | |
void isr_3(){ // Pin3 went LOW | |
delay(1); // Debounce time | |
if(digitalRead(3) == LOW){ // Pin3 still LOW ? | |
if(digitalRead(2) == HIGH && halfleft == false){ // <-- | |
halfleft = true; // One half click counter- | |
} // clockwise | |
if(digitalRead(2) == LOW && halfright == true){ // --> | |
halfright = false; // One whole click clockwise | |
number++; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment