5panel.dance
↙️↖️⏺️↗️↘️
GitHub • YouTube • BlueSky • Discord • Ko-Fi
Info
- This guide only covers PIUIO devices!
- Official PIUIO hardware as well as clones (i.e. piuio-pico) are supported. LXIO drivers are not covered here.
Windows: IO2Key
Required Software
You will need:- Zadig, for installing device drivers: Official Site
- IO2Key, to translate PIUIO inputs: Pre-compiled Mirror / Source Code
- Visual C++ Redistributable Packages for Visual Studio 2013, only necessary if you get any missing DLL errors: Official Site
Installation
Here are the basic steps for getting everything up and running:- Open up Zadig and plug in your PIUIO device.
- From the top dropdown, select the PIUIO. It should be listed as "EZ-USB FX2" or similar. If you're unsure, relaunch zadig without it plugged in and see what option disappears!
- There will be two boxes in the "Driver" section, separated by an arrow. On the right side, make sure "libusb-win32" is selected.
- Hit the install button and wait for the process to finish! This may take quite a long time in some cases. Enjoy the silly progress messages!
- If the driver installation fails, or does not persist between reboots, you may need to enable test signing mode in Windows.
- Reboot your PC!
- Unzip the IO2Key archive. Doesn't paricularly matter where, but I'd recommend putting it somewhere other than your Downloads folder, so it doesn't get mistakenly deleted.
- Navigate to where you extracted the archive and run IO2Key.exe.
- You should now see a little pad icon in your system tray at the bottom right of your taskbar, with no popups. If this is the case, great! You're ready to use your PIUIO! If you get an error message saying that there is no PIUIO detected, skip to the troubleshooting section.
Usage
- Your pad/controller inputs will now be output as QESZC for player 1, or 79513 for player 2. Make sure you map these in the controller or keymap settings in whichever game you're playing!
- IO2Key has a diagnostics window built in for testing your inputs! Locate the little pad icon in your system tray, at the far end of your taskbar. Right click it to see the available options!
- Once you're done, right click the icon in the system tray and select the "Exit" option. Unplugging the PIUIO will cause it to hang and you'll have to fiddle around with task manager to close it and stuff and it's annoying.
Troubleshooting
If you're here, you probably got a popup exclaiming that the program did not detect your PIUIO. Here are some things you can try to fix that:- Open up the device manager and locate the PIUIO. If you can't find it, unplug it and plug it back in to see which item disappears and reappears. Right click it, uninstall the driver, and then reinstall the libusb-win32 driver with Zadig.
- Check your USB cable. Some cables are charge-only and don't do data transfer. If you swapped cables between install and testing, this could be the case.
- Reboot your PC! Sometimes turning it off and on again is all it takes. Especially if you skipped that step in the installation section.
Bonus: Using the Buttonboard!
This section is under construction! For now, check out Nrivash's video guide.Linux: PIUIO Kernel Driver
Required Software
You will need:- din's fork of djpholy's PIUIO kernel module: Source Code
Installation
This guide assumes you're building and installing the module directly on the instance you will be using to play your games. If this is not the case, the README has extra details!Here are the basic steps for getting everything up and running, with terminal commands provided for your copy/paste convenience:
- Install gcc: sudo apt install gcc (Debian) / sudo pacman -S gcc (Arch)
- Download and extract the source code for the kernel module to ~/piuio, or clone the repo: git clone https://github.com/DinsFire64/piuio ~/piuio
- Navigate to the "mod" directory: cd ~/piuio/mod
- Run "make": make
- Install the compiled module: sudo make install
- You may encounter an error related to SSL stuff. You can safely ignore this! It's only important if you're trying to build a cryptographically signed module.
- Reboot your PC!
Usage
- Your pad/controller inputs should now be recognized as a generic joystick device, which you can map under the controller settings in-game!
- If using StepMania, navigate to Preferences.ini and set the lighting device to "PIUIO" for fancy cab lights support, if you have the hardware for it! This will work for official cabhinets, and PicoFX/PicoLX controllers at minimum.
Troubleshooting
Sometimes Linux will be Linux and you'll run into some issues for no apparent reason. Here's what you can try:- Search for the PIUIO module to ensure it actually installed: find /lib/modules -name 'piuio*'
- If the search turns up nothing, reboot and redo the installation.
- See if the PIUIO module info exists and can be found: modinfo piuio
- If the module cannot be found, run the depmod command to "rescan" installed modules and hopefully help the system find it.
- Attempt to run modinfo piuio again to see if the module is recognized. If so, great! Run modprobe piuio to add the module to the kernel, followed by lsmod | grep piuio to ensure the module was properly loaded.
- If all else fails, double check the key bindings in whichever game you're playing! It's an easy step to miss!