Table of Contents

Class Data106kbpsTypeA

Namespace
Iot.Device.Rfid
Assembly
Iot.Device.Card.dll

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 byte

he target number, should be 1 or 2 with PN532.

atqa ushort

Known as SENS_RES in the documentation.

sak byte

Know 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

ushort

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

byte

TargetNumber

The target number, should be 1 or 2 with PN532

public byte TargetNumber { get; set; }

Property Value

byte