Windows 8.1, Chrome v91.0.4472.164. I have verified the vendor and product ids against the device manager. The device is a Arduino UNO using the Ch340 driver, it is listed in the device manager under Ports(COM & LPT) as "USB-SERIAL CH340(COM7)" My code looks like this;
try {
const requestOptions = {
filters: [{
usbVendorId: 0x1A86,
usbProductId: 0x7523
}]
};
const device = await navigator.serial.requestPort(requestOptions);
} catch (e) {
console.log(e);
return;
}
I wonder if
usbProductId
andusbVendorId
are wrong somehow ;(Can you try this snippet of code which will allow you to get a prompt, select the Arduino UNO device serial port, and check
usbProductId
andusbVendorId
?