I'm using pygame to map values from my Logitech Cordless Rumblepad 2 and when i try to pull values from the right/left trigger buttons I can only retrieve binary values of 1-0 for button state down and up. Am I mistaken in thinking that the trigger buttons can retrieve inclusive values between 0 and 1? If not, how can I get this larger set of values? My code is below:
elif event.type == pygame.JOYBUTTONDOWN:
if event.button == 6:
left = joysticks[event.joy].get_button(6)
print("Joystick",joysticks[event.joy].get_name(),": ", left)