Measuring The Rotation Speed Using STM32 and Timer in Encoder Mode

In the previous guide (here), we saw how to configure timer to work in encoder mode. In this guide, we shall take it step further and measure the rotational speed in RPM (Revolutions per Minutes).

In this guide, we shall cover the following:

  • How to measure RPM.
  • Proposed experiment.
  • Firmware development.
  • Code.
  • Demo.

1. How to Measure RPM:

Since the encoder is used to measure the RPM, the timer will overflow at each full rotation. Hence we can use interrupt to measure the timer between each full rotation in milliseconds.

Since the timer will count up to the number of PPR provided by the encoder, an interrupt is generated. When the interrupt is generated, the time difference in milliseconds between each interrupt is measured and the the rptational speed in RPM is determined as following:

First, measure the time difference in seconds as following:

Then determine the frequency in Hz as following:

Then determine the RPM by multiplying the frequency by 60:

2. Proposed Experiment:

In order to test the code, a crude is conducted which includes the following components:

  • Stepper Motor NEMA17 (42HD2037)
  • Industrial Rotary encoder (LPD3806-360BM-G5-24C)
  • Coupling (6mm-6mm)

3. Firmware development:

Since the timer in encoder is already discussed, we shall implement it here differently, we shall use timer3 and pins PB4 and PB5 as inputs for the timer

Hence the initializing the encoder mode as following:

C

The interrupt handler as following:

C

For measuring RPM function:

C

If the time difference is zero, we shall return 0 indicating that the RPM is zero or beyond the capability of the current implantation.

Global variable:

C

The header file:

C

Since the code requires millis function, systick timer is used to generate interrupt each 1 milliseconds and delay as well as the following:

C

The header:

C

For the lcd screen, i2c based one is used and you can get the code from here.

For the stepper motor, please refer to the following topic.

4. Code:

You may download the code from here:

5. Demo:

Happy coding 🙂

Add Comment

Your email address will not be published. Required fields are marked *