COM: Difference between revisions
Jump to navigation
Jump to search
(Created page with " == USB-COMport adapters == == Windows == == Linux == In order to use a USB-COMport-adapter it may be required to add the user to the dialout group to get access to the con...") |
m (put code into corresponding environment) |
||
(One intermediate revision by one other user not shown) | |||
Line 6: | Line 6: | ||
== Linux == | == Linux == | ||
Please check first, whether you find your USB-COMport-adapter by using | |||
{{syntaxhighlight|lang=bash|code= | |||
lsusb | |||
}} | |||
In order to use a USB-COMport-adapter it may be required to add the user to the dialout group to get access to the controller | In order to use a USB-COMport-adapter it may be required to add the user to the dialout group to get access to the controller | ||
{{syntaxhighlight|lang=bash|code= | |||
sudo usermod -a -G dialout $USER | sudo usermod -a -G dialout $USER | ||
}} | |||
== Typical problems == | == Typical problems == |
Latest revision as of 15:06, 8 October 2018
USB-COMport adapters
Windows
Linux
Please check first, whether you find your USB-COMport-adapter by using
lsusb
In order to use a USB-COMport-adapter it may be required to add the user to the dialout group to get access to the controller
sudo usermod -a -G dialout $USER