mxgxw / MFRC522-python

A small class to interface with the NFC reader Module MFRC522
GNU Lesser General Public License v3.0
521 stars 419 forks source link

Supporting Android Beam #50

Open SamOliver1995 opened 6 years ago

SamOliver1995 commented 6 years ago

I am trying to send an NDEF Message from my Android Phoneto my Raspberry Pi via the rfid-rc522 reader.

When using this library I constantly get an authentication error. Is it possible to read NDEF Messages from Android with this library?

lambia commented 5 years ago

Nope, it's not. As it name says it's MF-related (MiFare). So it uses RFID, the low level protocol, to write raw blocks on the chip memory. If you want to write NDEF codes you need to build the block structure of NDEF from scratch. I just did it for a customer, so I forked this code today and during this month I'll melt my code with the original version to make people able to read and write NDEF messages. Stay tuned.