Skip to content

驱动

xpadneo

依赖

shell
# Raspbian
$ sudo apt install dkms raspberrypi-kernel-headers

安装

shell
$ git clone https://github.com/atar-axis/xpadneo.git
$ cd xpadneo
$ sudo ./install.sh

# 如遇如下报错
# Your kernel headers for kernel 4.19.97-v7l+ cannot be found at
# /lib/modules/4.19.97-v7l+/build or /lib/modules/4.19.97-v7l+/source.
# 将 /lib/modules 下拷贝一份至缺失版本,如:
# sudo cp -r /lib/modules/5.4.79-v7l+ /lib/modules/4.19.97-v7l+

连接

shell
$ bluetoothctl
$ [bluetooth]# scan on
...
# 长按xbox前侧配对键,至指示灯快速闪烁,出下如下新设备,记录其mac地址
[NEW] Device <MAC> Xbox Wireless Controller
...
[bluetooth]# pairable on
[bluetooth]# power on
[bluetooth]# pair <MAC>
[bluetooth]# trust <MAC>
[bluetooth]# connect <MAC>

# 如若报 Failed to connect: org.bluez.Error.Failed 错误,执行如下命令并重启系统
$ echo 'options bluetooth disable_ertm=Y' | sudo tee -a /etc/modprobe.d/bluetooth.conf

其他

shell
# 查看设备
$ bluetoothctl devices

使用

Python

安装依赖

shell
$ sudo pip3 install evdev asyncio

测试

python
$ cd xpadneo/misc/examples # 克隆下来的Git仓库
$ python3 python_asyncio_evdev/gamepad.py
press x to stop, Y to rumble light, B to rumble once, trigger and joystick right to see analog value
 trigger_right =  32.98   joystick_right_x =  0
  
# 如果一切顺利,按手柄Y会感受到长震动;按B会感受到短震动;按X退出程序

按键

按键codetype值类型
LT1003区间,0~1023
RT0903区间,0~1023
LB31001单值,00,01
RB31101单值,00,01
左摇杆 Y轴0103区间,0~65535
左摇杆 X轴0003区间,0~65535
右摇杆 Y轴0503区间,0~65535
右摇杆 X轴0203区间,0~65535
视图15801单值,00,01
菜单31501单值,00,01
十字键 上1703单值,00,-1
十字键 下1703单值,00,01
十字键 左1603单值,00,-1
十字键 右1603单值,00,01
Y30801单值,00,01
X30701单值,00,01
A30401单值,00,01
B30501单值,00,01

  • 摇杆X轴左侧为0,Y轴上侧为0

凡事预则立 不预则废