Difference between revisions of "STM32 Rotary Encoder"

From Stm32World Wiki
Jump to navigation Jump to search
 
(18 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[Category:STM32]][[Category:STM32 Development]][[Category:STM32 HAL]]{{metadesc|How to handle rotary encoders using STM32 HAL}}
+
[[Category:STM32]][[Category:STM32 Development]][[Category:STM32 HAL]][[Category:C]]{{metadesc|How to handle rotary encoders using STM32 HAL}}
 
[[File:Rotary Encoder w. debounce circuitry.jpg|thumb|Rotary encoder on de-bouncing breakout board]]
 
[[File:Rotary Encoder w. debounce circuitry.jpg|thumb|Rotary encoder on de-bouncing breakout board]]
 
Rotary Encoders are devices which will generate pulses when they are turned.
 
Rotary Encoders are devices which will generate pulses when they are turned.
  
 
Typically they will have two outputs with the pulses out of phase.  By checking which pulse "comes first" the direction of the turn can be determined.  It is not overly complicated to handle this manually, for example by hooking the signals up to an external GPIO Interrupt.
 
Typically they will have two outputs with the pulses out of phase.  By checking which pulse "comes first" the direction of the turn can be determined.  It is not overly complicated to handle this manually, for example by hooking the signals up to an external GPIO Interrupt.
 +
 +
On this page, we will go through two different approaches:
 +
 +
# [[#Timer|Using a Timer to decode rotary encoders]]
 +
# [[#Interrupt driven state machine|Interrupt driven state machine]]
  
 
{{clear}}
 
{{clear}}
Line 20: Line 25:
 
[[File:rotary debounce.png|600px]]
 
[[File:rotary debounce.png|600px]]
  
[[User:Lth|I]] just happened to have a few of those rotary encoder breakout boards lying around.
+
[[User:Lth|I]] just happened to have a few of those rotary encoder breakout boards lying around (see top right image).
 +
 
 +
== Timer ==
  
== Using Timer to decode rotary encoder ==
+
[[STM32 Timers]] can be configured in encoder mode and do most of the "heavy lifting".
  
 
In [[STM32CubeMX]] a timer can be configured to combine two channels in Encoder mode.
 
In [[STM32CubeMX]] a timer can be configured to combine two channels in Encoder mode.
Line 37: Line 44:
  
 
The "Counter period" will determine the "range" of the counts.  In this case, the counter period is set to 99, so the counter will count up to 99 and then wrap around to 0, and vice versa when rotating in the opposite direction.
 
The "Counter period" will determine the "range" of the counts.  In this case, the counter period is set to 99, so the counter will count up to 99 and then wrap around to 0, and vice versa when rotating in the opposite direction.
 +
 +
Finally we can, if needed, enable an interrupt:
 +
 +
[[File:Encoder Timer interrupt.png|600px]]
 +
 +
[[STM32CubeMX]] will now generate the bulk of the code needed.
 +
 +
We need to start the Timer:
 +
 +
<pre>
 +
HAL_TIM_Encoder_Start_IT(&htim3, TIM_CHANNEL_ALL);
 +
</pre>
 +
 +
We can now read out the encoder counter like this:
 +
 +
<pre>
 +
uint32_t last_print = 0, now = 0;
 +
 +
for (;;) {
 +
 +
now = HAL_GetTick();
 +
if (now - last_print >= 1000) {
 +
DBG("Encoder counter = %lu", TIM3->CNT);
 +
last_print = now;
 +
}
 +
 +
}
 +
</pre>
 +
 +
== Interrupt driven state machine ==
 +
 +
In order to handle the rotary decoder using interrupts let us look more closely at the signals.
 +
 +
As mentioned earlier, rotary encoders have two signals A and B which are phase offset.  If we do a bit of binary math on these two bits:
 +
 +
<pre>
 +
S = B << 1 + A
 +
</pre>
 +
 +
We realise that there can be 4 different distinct phases: 0, 1, 2 and 3.  When rotating in one direction the signals will look like this:
 +
 +
[[File:Rotary Encoder Signals.png|600px]]
 +
 +
In other words, when rotating, the phase transitions will be 3 -> 2 -> 0 -> 1 -> 3
 +
 +
When rotating in the opposite direction this sequence will simply be reversed: 3 -> 1 -> 0 -> 2 -> 3
 +
 +
This now becomes really simple to deal with in the interrupt handler:
 +
 +
<pre>
 +
uint8_t rot_get_state() {
 +
return (uint8_t)((HAL_GPIO_ReadPin(ROT_B_GPIO_Port, ROT_B_Pin) << 1)
 +
                | (HAL_GPIO_ReadPin(ROT_A_GPIO_Port, ROT_A_Pin)));
 +
}
 +
 +
// External interrupts from rotary encoder
 +
void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin) {
 +
if (GPIO_Pin == ROT_A_Pin || GPIO_Pin == ROT_B_Pin) {
 +
 +
rot_new_state = rot_get_state();
 +
 +
DBG("%d:%d", rot_old_state, rot_new_state);
 +
 +
// Check transition
 +
if (rot_old_state == 3 && rot_new_state == 2) {        // 3 -> 2 transition
 +
rot_cnt++;
 +
} else if (rot_old_state == 2 && rot_new_state == 0) { // 2 -> 0 transition
 +
rot_cnt++;
 +
} else if (rot_old_state == 0 && rot_new_state == 1) { // 0 -> 1 transition
 +
rot_cnt++;
 +
} else if (rot_old_state == 1 && rot_new_state == 3) { // 1 -> 3 transition
 +
rot_cnt++;
 +
} else if (rot_old_state == 3 && rot_new_state == 1) { // 3 -> 1 transition
 +
rot_cnt--;
 +
} else if (rot_old_state == 1 && rot_new_state == 0) { // 1 -> 0 transition
 +
rot_cnt--;
 +
} else if (rot_old_state == 0 && rot_new_state == 2) { // 0 -> 2 transition
 +
rot_cnt--;
 +
} else if (rot_old_state == 2 && rot_new_state == 3) { // 2 -> 3 transition
 +
rot_cnt--;
 +
}
 +
 +
rot_old_state = rot_new_state;
 +
}
 +
}
 +
</pre>
 +
 +
So what is the catch.  On the surface this approach actually seems quite a lot simpler than using the [[#Timer|timer]].  The issue is "bouncing".  This approach works well with a rotary decoder which is properly electrically de-bounced, but it will fail miserably if the electrical transitions are "unclean" (multiple interrupts generated).
  
 
== Miscellaneous Links ==
 
== Miscellaneous Links ==
  
 +
* [[STM32 Timers]]
 +
* [https://github.com/lbthomsen/greenpill/tree/master/rotary_encoder Rotary Encoder STM32 firmware]
 
* [https://github.com/lbthomsen/rotary-encoder-breakout Rotary Encoder Breakout w. de-bouncing circuit]
 
* [https://github.com/lbthomsen/rotary-encoder-breakout Rotary Encoder Breakout w. de-bouncing circuit]

Latest revision as of 03:44, 15 July 2022

Rotary encoder on de-bouncing breakout board

Rotary Encoders are devices which will generate pulses when they are turned.

Typically they will have two outputs with the pulses out of phase. By checking which pulse "comes first" the direction of the turn can be determined. It is not overly complicated to handle this manually, for example by hooking the signals up to an external GPIO Interrupt.

On this page, we will go through two different approaches:

  1. Using a Timer to decode rotary encoders
  2. Interrupt driven state machine

Rotary encoder signals

A rotary encoder will output 2 signals 90 degrees out of phase with each other.

Rotary encoder signals.jpeg

By analysing the order of the transitions the steps can be counted and the direction can be detected.

Rotary encoder de-bouncing

Rotary encoders are build with mechanical contacts and they are prone to "bouncing" (one press generate more than one interrupt". The "signals" can be cleaned up by implementing a low-pass filter like this:

Rotary debounce.png

I just happened to have a few of those rotary encoder breakout boards lying around (see top right image).

Timer

STM32 Timers can be configured in encoder mode and do most of the "heavy lifting".

In STM32CubeMX a timer can be configured to combine two channels in Encoder mode.

Timer Encoder.png

This will highlight the necessary pins:

Rotary encoder pins.png

The various Parameter settings can then be adjusted:

Encoder parameter settings.png

The "Counter period" will determine the "range" of the counts. In this case, the counter period is set to 99, so the counter will count up to 99 and then wrap around to 0, and vice versa when rotating in the opposite direction.

Finally we can, if needed, enable an interrupt:

Encoder Timer interrupt.png

STM32CubeMX will now generate the bulk of the code needed.

We need to start the Timer:

HAL_TIM_Encoder_Start_IT(&htim3, TIM_CHANNEL_ALL);

We can now read out the encoder counter like this:

uint32_t last_print = 0, now = 0;

for (;;) {

	now = HAL_GetTick();
	if (now - last_print >= 1000) {
		DBG("Encoder counter = %lu", TIM3->CNT);
		last_print = now;
	}

}

Interrupt driven state machine

In order to handle the rotary decoder using interrupts let us look more closely at the signals.

As mentioned earlier, rotary encoders have two signals A and B which are phase offset. If we do a bit of binary math on these two bits:

S = B << 1 + A

We realise that there can be 4 different distinct phases: 0, 1, 2 and 3. When rotating in one direction the signals will look like this:

Rotary Encoder Signals.png

In other words, when rotating, the phase transitions will be 3 -> 2 -> 0 -> 1 -> 3

When rotating in the opposite direction this sequence will simply be reversed: 3 -> 1 -> 0 -> 2 -> 3

This now becomes really simple to deal with in the interrupt handler:

uint8_t rot_get_state() {
	return (uint8_t)((HAL_GPIO_ReadPin(ROT_B_GPIO_Port, ROT_B_Pin) << 1) 
                | (HAL_GPIO_ReadPin(ROT_A_GPIO_Port, ROT_A_Pin)));
}

// External interrupts from rotary encoder
void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin) {
	if (GPIO_Pin == ROT_A_Pin || GPIO_Pin == ROT_B_Pin) {

		rot_new_state = rot_get_state();

		DBG("%d:%d", rot_old_state, rot_new_state);

		// Check transition
		if (rot_old_state == 3 && rot_new_state == 2) {        // 3 -> 2 transition
			rot_cnt++;
		} else if (rot_old_state == 2 && rot_new_state == 0) { // 2 -> 0 transition
			rot_cnt++;
		} else if (rot_old_state == 0 && rot_new_state == 1) { // 0 -> 1 transition
			rot_cnt++;
		} else if (rot_old_state == 1 && rot_new_state == 3) { // 1 -> 3 transition
			rot_cnt++;
		} else if (rot_old_state == 3 && rot_new_state == 1) { // 3 -> 1 transition
			rot_cnt--;
		} else if (rot_old_state == 1 && rot_new_state == 0) { // 1 -> 0 transition
			rot_cnt--;
		} else if (rot_old_state == 0 && rot_new_state == 2) { // 0 -> 2 transition
			rot_cnt--;
		} else if (rot_old_state == 2 && rot_new_state == 3) { // 2 -> 3 transition
			rot_cnt--;
		}

		rot_old_state = rot_new_state;
	}
}

So what is the catch. On the surface this approach actually seems quite a lot simpler than using the timer. The issue is "bouncing". This approach works well with a rotary decoder which is properly electrically de-bounced, but it will fail miserably if the electrical transitions are "unclean" (multiple interrupts generated).

Miscellaneous Links