Solution for 1430:f801 RedOctane under Raspberry PI
Posted: Sat Aug 10, 2013 10:56 am
Raspberry Pi + xbox controller + crazyflie
For those with 1430:f801 RedOctane, xboxdrv did not work due to xboxdrv does not comes with the specific USB id.
To make it work, edit /root/bin/xbox360
For those with 1430:f801 RedOctane, xboxdrv did not work due to xboxdrv does not comes with the specific USB id.
To make it work, edit /root/bin/xbox360
Code: Select all
$ cat /root/bin/xbox360
#!/bin/sh
if test "$ACTION" = "add"
then
/usr/bin/xboxdrv --device-by-id 1430:f801 --type xbox360 --axismap X2=X1,Y2=Y1,X1=X2,Y1=Y2 &
else
killall -9 xboxdrv
fi