I\'m looking for a way to use the RFID \"RC522\" on a Raspberry Pi 2.0 on Windows IOT.
It is of course not offical compatible...
The offical one (OM5577 demo
Addition: If you want to see the UID as a string representing the hex chars, you can use the following inside TagIsPresent part:
TagIsPresent
var uid = mfrc.ReadUid(); string txt_Result = ""; foreach (byte byt in uid.FullUid) { txt_Result = txt_Result + byt.ToString("x2"); } mfrc.HaltTag();