Example Code for Arduino-Pulse Count and Direction Detection
Last revision 2025/12/15
This guide offers a comprehensive walkthrough on how to set up pulse count and direction detection using Arduino, including necessary hardware, software, wiring diagrams, and sample code for effective robotics control.
Hardware Preparation
- DFRduino UNO R3 (or similar) x 1
- MiniQ Robot chassis Encoder x 1
- M-M/F-M/F-F Jumper wires
Software Preparation
Wiring Diagram

Sample Code
const byte encoder0pinA = 2;//A pin -> the interrupt pin 0
const byte encoder0pinB = 4;//B pin -> the digital pin 4
byte encoder0PinALast;
int duration;//the number of the pulses
boolean Direction;//the rotation direction
void setup()
{
Serial.begin(57600);//Initialize the serial port
EncoderInit();//Initialize the module
}
void loop()
{
Serial.print("Pulse:");
Serial.println(duration);
duration = 0;
delay(100);
}
void EncoderInit()
{
Direction = true;//default -> Forward
pinMode(encoder0pinB,INPUT);
attachInterrupt(0, wheelSpeed, CHANGE);
}
void wheelSpeed()
{
int Lstate = digitalRead(encoder0pinA);
if((encoder0PinALast == LOW) && Lstate==HIGH)
{
int val = digitalRead(encoder0pinB);
if(val == LOW && Direction)
{
Direction = false; //Reverse
}
else if(val == HIGH && !Direction)
{
Direction = true; //Forward
}
}
encoder0PinALast = Lstate;
if(!Direction) duration ;
else duration--;
}
Was this article helpful?
