2017-02-17 15:47:19 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf8 -*-
|
|
|
|
|
|
|
|
import RPi.GPIO as GPIO
|
|
|
|
import MFRC522
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-09-28 08:50:49 +00:00
|
|
|
# [1] Create an object of the class MFRC522
|
2017-09-27 16:09:50 +00:00
|
|
|
GPIO.setwarnings(False);
|
2017-02-17 15:47:19 +00:00
|
|
|
MIFAREReader = MFRC522.MFRC522()
|
|
|
|
|
2017-09-28 08:50:49 +00:00
|
|
|
# [2] Scan for cards
|
2017-02-17 15:47:19 +00:00
|
|
|
(status,TagType) = MIFAREReader.MFRC522_Request(MIFAREReader.PICC_REQIDL)
|
|
|
|
|
2017-09-28 08:50:49 +00:00
|
|
|
# [3] If no card found -> exit 1
|
|
|
|
if status != MIFAREReader.MI_OK:
|
2017-09-28 08:55:59 +00:00
|
|
|
print 127;
|
|
|
|
exit(127);
|
2017-02-17 15:47:19 +00:00
|
|
|
|
2017-09-28 08:50:49 +00:00
|
|
|
# [4] Get the UID of the card
|
2017-02-17 15:47:19 +00:00
|
|
|
(status,uid) = MIFAREReader.MFRC522_Anticoll()
|
|
|
|
|
2017-09-28 08:50:49 +00:00
|
|
|
# [5] If no UID read -> exit 1
|
|
|
|
if status != MIFAREReader.MI_OK:
|
2017-09-28 08:55:59 +00:00
|
|
|
print 127;
|
|
|
|
exit(127);
|
2017-02-17 15:47:19 +00:00
|
|
|
|
2017-09-28 08:50:49 +00:00
|
|
|
# [6] Print UID
|
2017-02-24 09:14:51 +00:00
|
|
|
suid = str(hex(uid[0]))[2:];
|
|
|
|
suid += '-' + str(hex(uid[1]))[2:];
|
|
|
|
suid += '-' + str(hex(uid[2]))[2:];
|
|
|
|
suid += '-' + str(hex(uid[3]))[2:];
|
2017-02-17 15:47:19 +00:00
|
|
|
|
2017-02-24 09:14:51 +00:00
|
|
|
print suid;
|
|
|
|
exit(0);
|