Questions tagged [nfc]
Near field communication, a wireless communication technology. This tag is to be used for questions how to interface to NFC devices.
57 questions
1 vote
1 answer
201 views
Read MIFARE Ultralight with MFRC522 reader
I want to read the complete 512-bit EEPROM memory of a MIFARE Ultralight card (MF0ICU1), i.e., the 56-bit (= 7 byte) serial number (= ID = UID) 32-bit one-time programmable area 384-bit user read/...
0 votes
0 answers
107 views
How to get board game pawns position
I am building a semi-digital version of the famous Monopoly game. For this, I'm using a screen with a Bubble.io app for the interface: Now, I would ideally like to detect the physical position of the ...
1 vote
2 answers
3k views
PN532 with Raspberry Pi Pico
I have PN532 NFC Module that looks like this I am trying to connect this NFC Module with Pico, but I have no luck in finding library that allows me this. What can I do to control it? Can you ...
1 vote
0 answers
72 views
RC522 not writing with raspberry pi
So I am new to this, I followed this tutorial https://pimylifeup.com/raspberry-pi-rfid-rc522/ and did exactly what they said in it. It looks like my RC522 isnt detecting any RFID card. Is there any ...
0 votes
1 answer
286 views
Connect 2 RC522 to Raspberry Pi
I wanted to connect 2 RC522 to my Raspberry Pi. I Followed the instructions from here. But then I got the error message: /usr/local/lib/python3.9/dist-packages/mfrc522/MFRC522.py:151: RuntimeWarning: ...
0 votes
1 answer
350 views
"ImportError: No module named RPi.GPIO" when trying to add NFC reader RC522
I am trying to add a NFC tag reader to my model4B pi. I have been using the guide on this page I have added the reader to my pi, using female to female jumper cables, using the diagram provided. I ...
0 votes
0 answers
183 views
RC522 not recognized as NFC-reader
I've installed the RC522 module on my Raspberry Pi 3B according to this guide: https://pimylifeup.com/raspberry-pi-rfid-rc522/ Reading and writing with the python scripts works, but according to this ...
1 vote
1 answer
266 views
How to change bus number of NFC reader on pi [closed]
I am trying to build a NFC reader. I bought a PN532 and connected it to the pi with the diagram shown below. I ran the code below and got AssertionError:"Bus number must be 1 or 0". I then ...
1 vote
1 answer
2k views
rpi nfc tag emulation
I am looking for a NFC device which can work with rpi (3B) and is able to emulate card. NFC devices are super confusing world. I tried several NFC devices with PN532 controller and all of them so far ...
1 vote
2 answers
925 views
PN532 I2C read different Sectors with custom key
I am using the PN532 NFC Board. It's connected via I2C to my Raspberry Pi. I am looking for a library/Script which gives me any Sector of a Mifare Classic NFC card. I only can find the normal ...
1 vote
1 answer
609 views
RFID RC522 Clone Script Unicode Error
I've set up a RC522 Card on my pi using This Tutorial and hacked together the Read.py and Write.py scripts into a Clone.py script: #!usr/bin/env python import RPi.GPIO as GPIO from mfrc522 import ...
1 vote
0 answers
1k views
How can Rpi3B configure an I2C PN532 module as a NFC tag, to send data to an Android smart phone?
I'm working on a NFC study. My development environment is as follows. raspberry pi 3 B PN532 NFC : https://www.sunfounder.com/pn532-nfc-module-for-raspberry-pi.html Android Phone (app name :nfc-tools) ...
3 votes
1 answer
350 views
Wire length between Raspberry and RC522
I want to know what is max length can be wired connection between Raspberry and RC522 module?
1 vote
0 answers
1k views
Rpi4B cannot detect I2C PN532 NFC V3 reader problem
I have pn532 nfc module v3 connected to my Raspberry Pi 4 and I am having some troubles to set it up. I would appreciate some help from a more expert fellow in the field, I think this is not such an ...
2 votes
1 answer
995 views
Raspberry pi 3 RFID RC522 Card UID is not same with USB RFID Reader
I'm working with RFID RC522 using Raspberrypi 3B+. I'm following https://github.com/mxgxw/MFRC522-python this package and works like a charm. I can able to read the data from the card, able to write ...