Skip to content

Commit

Permalink
Also allow ACS ACR122U PICC for PN532 operation
Browse files Browse the repository at this point in the history
  • Loading branch information
henryk committed Dec 6, 2012
1 parent 969e5b4 commit 02e0d49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion readers.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def list_readers(cls):
pcsc_readers = PCSC_Reader.list_readers()
readers = []
for name, obj in pcsc_readers:
if name.startswith("ACS ACR 38U-CCID"):
if name.startswith("ACS ACR 38U-CCID") or name.startswith("ACS ACR122U PICC Interface"):
reader = cls(obj)
readers.append( (reader.name, reader) )
return readers
Expand Down

0 comments on commit 02e0d49

Please sign in to comment.