Can someone share the USB vendor ID (VID) and product ID (PID) for the SDS100? I'm working on updating a utility to support it. You can get this by connecting the scanner in USB Mass Storage mode and then running one of the following commands:
Terminal on macOS:
Example output (for a BCD436):
PowerShell on Windows:
Example output (for a BCD436):
Terminal on macOS:
Code:
ioreg -p IOUSB -l -w 0 -k "idProduct" -r -x | grep "USB:1965"
Code:
"uid" = "USB:1965001C000000000001"
PowerShell on Windows:
Code:
gwmi Win32_USBControllerDevice |%{[wmi]($_.Dependent)} | where-object { $_.DeviceID -like '*VID_1965*' } | ft DeviceID -auto
Code:
DeviceID
--------
USB\VID_1965&PID_001C\0000000000001