Rules for Lego NXT and EV3

This commit is contained in:
Artem Proskurnev 2023-10-11 18:35:50 +03:00
commit 676981b898

View file

@ -0,0 +1,8 @@
# udev rules for lego-mindstorms controllers
# The use of mode 666 can be considered safe, because this device is a robot toy for programming lessons.
# nxt
SUBSYSTEM=="usb", ATTRS{idVendor}=="0694", ATTRS{idProduct}=="0002", MODE="0666"
KERNEL=="hidraw*", ATTRS{idVendor}=="0694", ATTRS{idProduct}=="0002", MODE="0666"
# ev3
SUBSYSTEM=="usb", ATTRS{idVendor}=="0694", ATTRS{idProduct}=="0005", MODE="0666"
KERNEL=="hidraw*", ATTRS{idVendor}=="0694", ATTRS{idProduct}=="0005", MODE="0666"