NeuronRobotics / nrjavaserial

A Java Serial Port system. This is a fork of the RXTX project that uses in jar loading of the native code.
Other
345 stars 143 forks source link

Recover manufacturer and pnpid #114

Closed AdrianJesusSilva closed 4 years ago

AdrianJesusSilva commented 6 years ago

hi to everyone

i would like to ask to the developers, if there is any posibility of recovering the manufacturer and pnpid of the serial device like nodejs serialport do, here a example:

var SerialPort = require("serialport");
SerialPort.list(
    (err, ports)=>{
        if(err){return console.log(err);}
        console.log("puertos: "+ports.length);
        ports.forEach(
            (port)=>{
                console.log(port.comName);
                console.log(port.pnpId);
                console.log(port.manufacturer);
            }
        );
    }
);

thanks in advance and sorry for my bad english

have a nice day!

madhephaestus commented 4 years ago

stale

AdrianJesusSilva commented 4 years ago

Thank You