mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 14:24:54 +00:00
Using the HIDAPI library has the advantage that we get Wiimote and DolphinBar support on all platforms with only one IO implementation.
8 lines
442 B
Text
8 lines
442 B
Text
# This is how you can match Wiimotes (and Wiimote-emulating devices like the DolphinBar) in udev.
|
|
# If you are a package maintainer you'll probably want to restrict permissions to a group: GROUP="plugdev", MODE="0660".
|
|
|
|
# Wiimote or DolphinBar
|
|
SUBSYSTEMS=="hid", ATTRS{idVendor}=="057e", ATTRS{idProduct}=="0306", MODE="0666"
|
|
|
|
# newer Wiimotes (RVL-CNT-01-TR)
|
|
SUBSYSTEMS=="hid", ATTRS{idVendor}=="057e", ATTRS{idProduct}=="0330", MODE="0666"
|