diff --git a/Dump.py b/Dump.py old mode 100755 new mode 100644 index 49e6122..ba7333a --- a/Dump.py +++ b/Dump.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python +# -*- coding: utf8 -*- + import RPi.GPIO as GPIO import MFRC522 import signal diff --git a/MFRC522.py b/MFRC522.py old mode 100755 new mode 100644 index b18d0ff..6f157c2 --- a/MFRC522.py +++ b/MFRC522.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python +# -*- coding: utf8 -*- + import RPi.GPIO as GPIO import spi import signal @@ -104,7 +107,7 @@ class MFRC522: serNum = [] - def __init__(self,dev='/dev/spidev0.0',spd=1000000): + def __init__(self, dev='/dev/spidev0.0', spd=1000000): spi.openSPI(device=dev,speed=spd) GPIO.setmode(GPIO.BOARD) GPIO.setup(22, GPIO.OUT) @@ -114,10 +117,10 @@ class MFRC522: def MFRC522_Reset(self): self.Write_MFRC522(self.CommandReg, self.PCD_RESETPHASE) - def Write_MFRC522(self,addr,val): + def Write_MFRC522(self, addr, val): spi.transfer(((addr<<1)&0x7E,val)) - def Read_MFRC522(self,addr): + def Read_MFRC522(self, addr): val = spi.transfer((((addr<<1)&0x7E) | 0x80,0)) return val[1] diff --git a/Read.py b/Read.py old mode 100755 new mode 100644 index 16517f2..c90e213 --- a/Read.py +++ b/Read.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python +# -*- coding: utf8 -*- + import RPi.GPIO as GPIO import MFRC522 import signal @@ -53,4 +56,4 @@ while continue_reading: print "Authentication error" # Make sure to stop scanning for cards - continue_reading = false + continue_reading = False diff --git a/Write.py b/Write.py old mode 100755 new mode 100644 index 154da67..d754463 --- a/Write.py +++ b/Write.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python +# -*- coding: utf8 -*- + import RPi.GPIO as GPIO import MFRC522 import signal