From 1ad42867bc4e3397ab3b699301078db92ec4cce3 Mon Sep 17 00:00:00 2001 From: "Peter D. Gray" Date: Fri, 8 Dec 2023 09:43:51 -0500 Subject: [PATCH] text --- unix/variant/sim_nfc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unix/variant/sim_nfc.py b/unix/variant/sim_nfc.py index 079c7fc1..481e8107 100644 --- a/unix/variant/sim_nfc.py +++ b/unix/variant/sim_nfc.py @@ -4,7 +4,7 @@ from nfc import NFCHandler global TAG_DATA TAG_DATA = bytearray(8196) -# unix/working/nfc-dump.ndef +# unix/work/nfc-dump.ndef DATA_FILE = 'nfc-dump.ndef' class SimulatedNFCHandler(NFCHandler): @@ -30,7 +30,7 @@ class SimulatedNFCHandler(NFCHandler): atime, mtime, ctime = os.stat(DATA_FILE)[-3:] self._mtime = mtime self._atime = atime - print("%d bytes of NDEF written to work/nfc-dump.ndef .. Press N or touch or read that file to simulate taps" % n) + print("%d bytes of NDEF written to work/nfc-dump.ndef .. Ctrl-N or touch or read that file to simulate taps" % n) async def wipe(self, full_wipe): print("NFC chip wiped (full=%d)" % int(full_wipe))