rfid test is working
This commit is contained in:
12
rfid_test.py
Normal file
12
rfid_test.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from time import sleep
|
||||
import RPi.GPIO as GPIO
|
||||
from mfrc522 import SimpleMFRC522
|
||||
|
||||
reader = SimpleMFRC522()
|
||||
|
||||
while True:
|
||||
id, text = reader.read()
|
||||
print(id)
|
||||
print(text)
|
||||
sleep(1)
|
||||
GPIO.cleanup()
|
||||
Reference in New Issue
Block a user