I'm using Evdev to read the XBOX ONE inputs of A, B, X, Y to great success. However, I am battling to pick up the Analog Stick inputs. Can anyone help me with the Python code for this?
I am trying to control a Servo.
This is my code so far, it works "perfectly". I need to know how to read the outupts of the (xbox)joystick so i can us "GPIO.PWM" for the servo.
from evdev import InputDevice, categorize, ecodes, KeyEvent
import RPi.GPIO as GPIO
from time import sleep
GPIO.setmode(GPIO.BOARD)
GPIO.setup(8, GPIO.OUT, initial=GPIO.LOW)
GPIO.setup(7, GPIO.OUT, initial=GPIO.LOW)
GPIO.setup(11, GPIO.OUT, initial=GPIO.LOW)
GPIO.setup(12, GPIO.OUT, initial=GPIO.LOW)
gamepad = InputDevice('/dev/input/event2')
#evdev takes care of polling the controller in a loop
for event in gamepad.read_loop():
if event.type == ecodes.EV_KEY:
keyevent = categorize(event)
if keyevent.keystate == KeyEvent.key_down:
if keyevent.keycode[0] == "BTN_A":
print "Button A Pressed"
GPIO.output (8, GPIO.HIGH)
elif keyevent.keycode[0] == "BTN_B":
print "Button B Pressed"
GPIO.output (7, GPIO.HIGH)
elif keyevent.keycode[0] == "BTN_WEST":
print "Button Y Pressed"
GPIO.output (11, GPIO.HIGH)
elif keyevent.keycode[0] == "BTN_NORTH":
print "Button X Pressed"
GPIO.output (12, GPIO.HIGH)
if keyevent.keystate == KeyEvent.key_up:
if keyevent.keycode[0] == "BTN_A":
print "Button A Released"
GPIO.output (8, GPIO.LOW)
elif keyevent.keycode[0] == "BTN_B":
print "Button B Released"
GPIO.output (7, GPIO.LOW)
elif keyevent.keycode[0] == "BTN_WEST":
print "Button Y Released"
GPIO.output (11, GPIO.LOW)
elif keyevent.keycode[0] == "BTN_NORTH":
print "Button X Released"
GPIO.output (12, GPIO.LOW)
I am working on a similar project to control a tank-style robot with an XBox One Wireless controller, and I've mapped out the absolute axis, with an example of the left stick moving foreward/backward, and the right stick turning.
Python is not my favorite language, and there is probably a better method of calibrating, but I slapped this together. Hope it helps.