Back to Parent

import RPi.GPIO as GPIO
import SimpleMFRC522

reader = SimpleMFRC522.SimpleMFRC522()

try:
       id, text = reader.read()
       print(id)
       print(text)
finally:
       GPIO.cleanup()
Click to Expand

Content Rating

Is this a good/useful/informative piece of content to include in the project? Have your say!

0