diff --git a/NFC_Reader.py b/NFC_Reader.py index a2d0331..fb3c671 100644 --- a/NFC_Reader.py +++ b/NFC_Reader.py @@ -22,10 +22,10 @@ def onTagSense(tag): #try: if response.json()["mode"] == "balance" or response.json()["mode"] == "message": - oled.balance(response.json()["username"], response.json()["balance"]) + #oled.balance(response.json()["username"], response.json()["balance"]) return True - #except: - # None + except: + None return False def start_nfc_normal(): @@ -35,6 +35,7 @@ def start_nfc_normal(): while True: clf.connect(rdwr={'on-connect': onTagSense, 'beep-on-connect': True }) time.sleep(0.75) + if __name__ == "__main__": start_nfc_normal()