This commit is contained in:
elric91 2021-10-09 17:35:19 +02:00 committed by Kyle Brown
parent b2db921a5b
commit 74186f20a1

View File

@ -1,8 +1,8 @@
# See docs/encoder.md for how to use
import digitalio
from supervisor import ticks_ms
from kmk.modules import Module
# NB : not using rotaryio as it requires the pins to be consecutive
@ -74,7 +74,7 @@ class Encoder:
self._state = new_state
# Velocity
if VELOCITY_MODE:
if self.VELOCITY_MODE:
new_timestamp = ticks_ms()
self._velocity = new_timestamp - self._timestamp
self._timestamp = new_timestamp