We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Changed the original serial_server_v1_1 found among provided LabRAD modules
On Linux, if no serial ports are found, make sure the user has the right permissions to open the serial ports.
ls -l /dev/
For instance, one can add the user to the group dialout
adduser username dialout
To make sure one can open the port, use the python serial library, i.e
import serial ser = serial.Serial('/dev/ttyUSB0')