I am trying to communicate with a microcontroller using java. In windows i simply use "COM4" and my code workes perfectly. In linux i am trying to use "/dev/ttyUSB0". But gives me an error "Could not find serial port".
I used dmesg | grep tty to see active serial port. is this a right method?
how can i solve this issue? I am really new to linux so please explain in simple language
here is my code
Enumeration portIdentifiers = CommPortIdentifier.getPortIdentifiers();
CommPortIdentifier portId = null;
while (portIdentifiers.hasMoreElements())
{
CommPortIdentifier pid = (CommPortIdentifier) portIdentifiers.nextElement();
if(pid.getPortType() == CommPortIdentifier.PORT_SERIAL &&
pid.getName().equals("/dev/ttyUSB0"))
{
portId = pid;
break;
}
}
if(portId == null)
{
System.err.println("Could not find serial port "); // + wantedPortName);
System.exit(1);
}

dmesgwhen you insert the device should show the name. – Karthik T Feb 18 at 9:05usbserialmodule? – Davide Berra Feb 18 at 9:32System.out.println( pid.getName());in your loop, to see if it finds any at all ? Also make sure the permissions are set properly, usually only root can access /dev/ttyUSB0 by default on linux. – nos Feb 18 at 9:38