Help:Peripherals and accessories

Help page
Revision as of 17:27, 9 December 2019 by HerrHulaHoop (talk | contribs) (Created new page for configuration of peripherals)

This page is under construction

cellUsbd device whitelist

To avoid interfering with all hardware and for ease of use our list of devices is an invisible whitelist of supported hardware, which at the time of writing is:

  • Skylanders Portal
  • Singstar Microphone (currently not working as it uses the streaming usb protocol)
  • Guitar Hero Guitar
  • Guitar Hero Drums
  • Guitar Hero Live Guitar
  • DJ Hero Turntable
  • Harmonix Guitar
  • Harmonix Drums
  • Harmonix Keyboard
  • Harmonix Button Guitar
  • Harmonix Real Guitar
  • lgFF_c283_c29b(which regroups some Logitech wheels used by GT5/6)
  • Thrustmaster RGT FFB Pro
  • Thrustmaster F430
  • Thrustmaster FFB
  • Thrustmaster TRS
  • Thrustmaster T500 RS Gear Shift

cellUsbd set-up instructions

Now before you go all giddy and plug your favourite wheel to go play GT5, know that there are some limitations.

On Windows

  • You need to change the driver of the accessory you want to use to WinUsb one with zadig which is a well respected software to handle this.
  • Just in case the procedure to REVERT the driver is:
    1. Go to device manager, the device will be listed under "Universal Serial Bus Devices", right click on it,
    2. Properties => Driver => Update Driver => Browse my computer for driver software => Let me pick... => USB Input Device (or whatever the previous driver was).

On Linux

  1. Create a file called /etc/udev/rules.d/99-ps3-peripherals.rules (you will need root permissions to create this file), and fill it with the following:
    SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", MODE="0666"
  2. Note: this gives r/w access to all USB devices by default, if you want to specify a specific device you can use:
    SUBSYSTEM=="usb", ATTRS{idVendor}=="ABCD", ATTRS{idProduct}=="1234", MODE="0666"
    changing idVendor and idProduct values to the VID/PID of the device you want to allow.