Estoy trabajando con un BeagleBone Black y utilizando la biblioteca IO Python de Adafruit. Escribió una simple función de decodificación en cuadratura y funciona perfectamente bien cuando el motor funciona a aproximadamente 1800 RPM. Pero cuando el motor funciona a velocidades más altas, el código comienza a perder algunas de las interrupciones y el conteo del codificador comienza a acumular errores. ¿Tienen alguna sugerencia sobre cómo puedo hacer que el código sea más eficiente o si hay funciones que puedan hacer un ciclo de las interrupciones a una frecuencia mayor?
Gracias, Kel
Aquí está el código:
# Define encoder count function
def encodercount(term):
global counts
global Encoder_A
global Encoder_A_old
global Encoder_B
global Encoder_B_old
global error
Encoder_A = GPIO.input('P8_7') # stores the value of the encoders at time of interrupt
Encoder_B = GPIO.input('P8_8')
if Encoder_A == Encoder_A_old and Encoder_B == Encoder_B_old:
# this will be an error
error += 1
print 'Error count is %s' %error
elif (Encoder_A == 1 and Encoder_B_old == 0) or (Encoder_A == 0 and Encoder_B_old == 1):
# this will be clockwise rotation
counts += 1
print 'Encoder count is %s' %counts
print 'AB is %s %s' % (Encoder_A, Encoder_B)
elif (Encoder_A == 1 and Encoder_B_old == 1) or (Encoder_A == 0 and Encoder_B_old == 0):
# this will be counter-clockwise rotation
counts -= 1
print 'Encoder count is %s' %counts
print 'AB is %s %s' % (Encoder_A, Encoder_B)
else:
#this will be an error as well
error += 1
print 'Error count is %s' %error
Encoder_A_old = Encoder_A # store the current encoder values as old values to be used as comparison in the next loop
Encoder_B_old = Encoder_B
# Initialize the interrupts - these trigger on the both the rising and falling
GPIO.add_event_detect('P8_7', GPIO.BOTH, callback = encodercount) # Encoder A
GPIO.add_event_detect('P8_8', GPIO.BOTH, callback = encodercount) # Encoder B
# This is the part of the code which runs normally in the background
while True:
time.sleep(1)