Skip to main content

8Bitdo NES 30 Pro on linux

This post will go over the setup I had to do to get my  8Bitdo NES30 Pro controller working on my Arch linux desktop with steam.  This results in the system loading the xboxdrv automatically when the controller is connected, and unloading once finished.

Firmware Update

The first thing to tackle was the firmware update on the controller,  This may not be needed, but I like to keep my devices up to date.

After some googling, I was able to find a program called fwupd that's able to update the controller via a USB connection.  It's available for Arch in the community repo.

The basic syntax of the command is:

fwupdmgr get-devices
fwupdmgr refresh
fwupdmgr get-updatessudo
fwupdmgr update


The controller will need to be put into 'Firmware update mode'.  Be aware that the final command will also update all eligible firmware on your system, so If you don't want that, please dig into the documentation

Bluetooth Connection

Getting the controller connected is basically a matter of following along with the Arch Wiki.  To summarize:

install bluez bluez-utils bluez-plugins xboxdrv
enable bluetooth service
Connect to controller, get the name and uniq

grep NES -B1 -A9 /proc/bus/input/devices

Create the udev rule with the above info.

Xboxdrv mapping

I couldn't find a propper mapping for the controller, to Xboxdrv, so I created the following:

#8Bitdo NES30 Pro Config

[xboxdrv]
evdev-debug = true
evdev = /dev/btjoy
evdev-grab = true
rumble = false
mimic-xpad = true
silent = true

[evdev-absmap]
ABS_HAT0X = dpad_x
ABS_HAT0Y = dpad_y
ABS_X = X1
ABS_Y = Y1
ABS_Z = X2
ABS_RZ = Y2

[axismap]
-Y1 = Y1
-Y2 = Y2

[evdev-keymap]
# Map start and select
BTN_START=Start
BTN_SELECT=Back
# Map power to guide
BTN_C=Guide
# Map buttons to the printed key
BTN_SOUTH=A
BTN_EAST=B
BTN_NORTH=X
BTN_WEST=Y
# L1 R1 as Triggers
BTN_TL=LT
BTN_TR=RT
# L2 R2 as buttons
BTN_TL2=LB
BTN_TR2=RB
# Thumbs as thumbs
BTN_THUMBL=TL
BTN_THUMBR=TR


Auto Start/Stop on BT connect


Put the above config into /etc/default/nes30pro

Create a new service file /etc/systemd/system/nes30pro.service

[Unit]
Description=NES30 Pro controller driver daemon
Documentation=man:xboxdrv(1)
BindsTo=dev-btjoy.device
After=dev-btjoy.device

[Service]
User=root
PIDFile=/var/run/nes30pro.pid
ExecStart=/usr/bin/xboxdrv --pid-file /var/run/nes30pro.pid -c /etc/default/nes30pro --detach-kernel-driver --deadzone 4000 --deadzone-trigger 10%

[Install]
WantedBy=multi-user.target


edit the udev rule for the device, and append the following to the device line

, TAG+="systemd", ENV{SYSTEMD_WANTS}="nes30pro.service"

Problems encountered

The analogue sticks won't produce output
- I had to open the controller and detach, clean and reattach the ribbon cable.

No output for 60 seconds after connection
- this is a bug with xboxdrv.  Patches exist but I'm just going to live with it.

Comments

  1. Do people other than me read your blog? I liked your pascal press posts.

    ReplyDelete

Post a Comment

Popular posts from this blog

Craftware 1.17 on Arch Linux -- notes

Craftware a slicer for 3d printers is available for linux here .  It looks pretty good, and is supposedly multi threaded with support for hardware acceleration. I can only find it  as a deb file, and there's nothing in the AUR for it. I tried a few of the common methods for installing debs: debtap While it was able to create a package, upon installing it I got this error loading packages... error: failed to prepare transaction (package architecture is not valid) :: package craftware-1.17.1-1-i686 does not have a valid architecture So.. No good. I tried just extracting the package content, and running the binary: ./craftware: error while loading shared libraries: libomp.so: cannot open shared object file: No such file or directory and yes, it is installed. $ ldconfig -v           libomptarget.so -> libomptarget.so          libomp.so -> libomp.so          libzit...

The Saga of EA Customer support part 8

Jan 10, 2016 At 12:32 AM My forth case, the one opened specifically for a refund received the following reply: Hi!there thank you so much for reaching us.We appreciate you providing us this valuable information.What we need you to do is to please do contact us on our live queue for us to give our best assistance.Here is the link on how to https://help.ea.com/en/contact-us/new/ 1.select a product then 2.select flatform and 3.select topic lastly 4.complete request.And our phone or chat advisors will do the rest.Thank you so much again. Nice... Real nice... At 1:11 AM My first case, that I had most recently updated with a request for a refund received the following: I'm afraid that I don't see the connection between your missing quest reward and your purchased content. At 6:58 AM It was hastily explained from my phone: I purchased the content on good faith that the issue would be addressed.  Since the game is broken to the point of being unrepairable this is ...