2015-12-21 85 views
0

我需要基礎知識的幫助,即時新的樹莓pi和rfid,我想創建一個程序或腳本,可以讀取卡的所有數據塊並將其轉儲到文本文件。以及一個程序/腳本,可以讓我寫數據庫到卡raspberry pi rfid基礎知識

+0

你能告訴我們你的努力背後嗎? – manetsus

回答

0
import nxppy 
import time 

mifare = nxppy.Mifare() 
try: 
     while True: 
       try: 
         uid= mifare.select() 
         print(uid) 
       except nxppy.SelectError: 

         pass 
       time.sleep(0.2) 
except KeyboardInterrupt: 
     pass 
+0

非常感謝你的這項工作 – AlexNotTheLion