You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
471 B
11 lines
471 B
#
|
|
# Debian/Ubuntu:
|
|
# Drop this file into /lib/udev/rules.d and unplug and re-plug your device.
|
|
# This should change the permissions so that sudo is no longer needed.
|
|
#
|
|
# MODE="0666" is not recommended for multi-user systems.
|
|
|
|
SUBSYSTEM=="usb", ATTRS{idVendor}=="0416", ATTRS{idProduct}=="5020", MODE="0666"
|
|
# FIXME: the following line is not sufficient for pyhidapi.
|
|
KERNEL=="hidraw*", ATTRS{idVendor}=="0416", ATTRS{idProduct}=="5020", ATTRS{busnum}=="1", MODE="0666"
|
|
|
|
|