###### tags: `CircuitPython` `Raspberry Pi` `Pico` # Raspberry Pi Pico 在 Windows 上的序列埠 Raspberry Pi Pico 在 Winodws 上的裝置管理員只會顯示『USB序列裝置』: ![](https://i.imgur.com/yKpuGk6.png) 不過如果點進去看**詳細資料**頁次的**硬體識別碼**, 就可以看到 vendor id(VID) 和 product id(PID): ![](https://i.imgur.com/cTyT9n6.png) 其中 VID 239A 可在[Valid USB Vendor ID Numbers](https://www.usb.org/sites/default/files/vendor_ids033021.pdf#page=5)中找到: ![](https://i.imgur.com/xCqkj8z.png) 9114 就是 16 進位的 0x239A。PID 80F4 可在 [Adafruit_Windows_Drivers](https://github.com/adafruit/Adafruit_Windows_Drivers/blob/9f5e362d282cb04d5cff4269a6199643d374688a/Drivers/Adafruit_usbser/Adafruit_usbser.inf#L712)中看到 CircuitPython 裝置的 PID 是 80F4: ``` "%BOARD_80F4% CircuitPython (80F4:00)"=DriverInstall, USB\VID_239A&PID_80F4&MI_00 ```