mirror of
https://abf.rosa.ru/djam/lego-mindstorms-udev-rules.git
synced 2025-02-23 14:42:52 +00:00
8 lines
489 B
Text
8 lines
489 B
Text
# 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"
|