Class Data106kbpsTypeA
Create a 106 kbpd card like a Mifare card
public class Data106kbpsTypeA
- Inheritance
-
Data106kbpsTypeA
Constructors
Data106kbpsTypeA(byte, ushort, byte, byte[], byte[]?)
Create a 106 kbpd card like a Mifare card
public Data106kbpsTypeA(byte targetNumber, ushort atqa, byte sak, byte[] nfcId, byte[]? ats)
Parameters
targetNumber
bytehe target number, should be 1 or 2 with PN532.
atqa
ushortKnown as SENS_RES in the documentation.
sak
byteKnow as SEL_RES in the documentation.
nfcId
byte[]The unique NFC ID.
ats
byte[]Potential extra Answer To Select data.
Properties
Atqa
Known as SENS_RES in the documentation Answer To reQuest, Type A
public ushort Atqa { get; set; }
Property Value
Ats
Potential extra Answer To Select data
public byte[]? Ats { get; set; }
Property Value
- byte[]
NfcId
The unique NFC ID
public byte[] NfcId { get; set; }
Property Value
- byte[]
Sak
Know as SEL_RES in the documentation Select AcKnowledge
public byte Sak { get; set; }
Property Value
TargetNumber
The target number, should be 1 or 2 with PN532
public byte TargetNumber { get; set; }