forked from matthiasbock/Mifare-M302
-
Notifications
You must be signed in to change notification settings - Fork 0
/
myfare.py
33 lines (29 loc) · 1.05 KB
/
myfare.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import serial
from struct import pack, unpack
prot = {
'enquiry_module': '\x03\x12\x00\x15',
'enquiry_module_return': '\x02\x12\x14',
'active_buzzer': '\x02\x13\x15',
'enquiry_card': pack('BBBB', 03, 02, 00, 05),
'enquiry_cards_return': '\x03\x02\x01\x06', # got valid card
'enquiry_no_card_found': '\x02\x01\x03', # no card reachable or invalid
'enquiry_all_cards': '\x03\x02\x01\x05',
'anticollision' : '\x02\x03\x05\x00',
'select_card' : '\x02\x04\x06',
}
ser = serial.Serial('/dev/ttyUSB0',9600,timeout=1)
ser.write(prot['enquiry_card'])
resp = ser.read(4)
if resp == prot['enquiry_no_card_found']:
print "no valid card reachable"
elif resp == prot['enquiry_cards_return']:
ser.write(prot['active_buzzer'])
resp = ser.read(3)
if resp == prot['active_buzzer']:
print "found card, sending anticollision"
ser.write(prot['anticollision'])
resp = ser.read(7)
header = resp.encode('hex')[:4]
if header == "0603":
print "Card Serial:" + resp[-5:].encode('hex')
ser.close()