Pn532.ReadRegister Method

Definition

Overloads

ReadRegister(UInt16, Byte)

Read a single register

ReadRegister(UInt16[], Span<Byte>)

Read any register from the XRAM

ReadRegister(UInt16, Byte)

Read a single register

public bool ReadRegister (ushort register, out byte registerValue);
member this.ReadRegister : uint16 * byte -> bool
Public Function ReadRegister (register As UShort, ByRef registerValue As Byte) As Boolean

Parameters

register
UInt16

The register to read

registerValue
Byte

The value of the register

Returns

True if success

Applies to

ReadRegister(UInt16[], Span<Byte>)

Read any register from the XRAM

public bool ReadRegister (ushort[] registers, Span<byte> registerValues);
member this.ReadRegister : uint16[] * Span<byte> -> bool
Public Function ReadRegister (registers As UShort(), registerValues As Span(Of Byte)) As Boolean

Parameters

registers
UInt16[]

Array of register to read

registerValues
Span<Byte>

Register read values

Returns

True if success

Applies to