-
1Access Qwiic NFCPROM through NFC
Follow this link and get the application executable for your platform:
https://www.st.com/en/nfc/st25dv04k.html#sw-tools-scroll
STSW-ST25001 for Android or STSW-ST25IOS001 for iOS
-
2Access Qwiic NFCPROM through Qwiic connector
Plug the Qwiic NFCPROM into the FPGA Helper using a Qwiic cable and run this python script on the FPGA Helper board:
import board import busio i2c = busio.I2C(board.SCL, board.SDA) while not i2c.try_lock(): pass result = bytearray(32) i2c.writeto(83, bytes([0x00, 0x00]), stop=False) i2c.readfrom_into(83, result) print(result)
If you save that to the board as boot.py, you should get a boot.txt file something like this:
Adafruit CircuitPython 4.0.0-alpha.1-4-gf09537b-dirty on 2018-10-01; Steiert Solutions FPGA Helper with samd21e18 boot.py output: bytearray(b'\xe1@@\x05\x03\x14\xd1\x01\x10U\x03dei.steiert.net\xfe\xffCARD')
Discussions
Become a Hackaday.io Member
Create an account to leave a comment. Already have an account? Log In.