Skip to content

Commit

Permalink
Fix ID
Browse files Browse the repository at this point in the history
  • Loading branch information
alexforencich committed Feb 15, 2017
1 parent 4d17bc3 commit fc81ee9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion usbtmc/usbtmc.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def find_device(idVendor=None, idProduct=None, iSerial=None):
return None

for dev in devs:
if idVendor == 0x0957 and idProduct == 0x2818:
if idVendor == 0x0957 and idProduct == 0x2918:
# Agilent U2701A/U2702A (normal or firmware update mode)
if dev.idVendor != 0x0957 or dev.idProduct not in [0x2818, 0x2918]:
continue
Expand Down

0 comments on commit fc81ee9

Please sign in to comment.