I have a USB device that I need to control in Linux using Python
and serial commands, it works with ASCII commands.
In Windows it works fine after I install the vendor driver and in Device Manager I see it as a COM3 port and I communicate using pyserial
or pyvisa
modules.
In Linux I see it as /dev/ttyUSB1
but I cannot communicate with it using pyserial
or pyvisa
. The problem is that the vendor doesn't provide Linux drivers.
How am I able to get the device behave as a serial port in Linux?