Hello,
I have bought an optical encoder like this :

To read it, I have tried this sketch :
#define outputA 6
#define outputB 7
int counter = 0;
int aState;
int aLastState;
void setup() {
pinMode (outputA,INPUT);
pinMode (outputB,INPUT);
Serial.begin (9600);
// Reads the initial state of the outputA
aLastState = digitalRead(outputA);
}
void loop() {
aState = digitalRead(outputA); // Reads the "current" state of the outputA
// If the previous and the current state of the outputA are different, that means a Pulse has occured
if (aState != aLastState){
// If the outputB state is different to the outputA state, that means the encoder is rotating clockwise
if (digitalRead(outputB) != aState) {
counter ++;
} else {
counter --;
}
Serial.print("Position: ");
Serial.println(counter);
}
aLastState = aState; // Updates the previous state of the outputA with the current state
}
It works well but the encoder bouton has some "clicks" (100 per revolution) and each click gives not one pulse but two, the console shows for the 1st one clik :
Position: 0
Position: 1
Then :
Position: 2
Position: 3
etc...
How can I divide by two, and have only one position change each click?
Thanks for your help