Pn532.ListPassiveTarget Method

Definition

Overloads

ListPassiveTarget(MaxTarget, TargetBaudRate)

List all targets cards in range When using this function, you can't determine which target you've read So you'll need to use the Decode functions to try to get a card type So use this function only with a specific card type. Prefer the AutoPoll function As the type identified is returned

ListPassiveTarget(MaxTarget, TargetBaudRate, ReadOnlySpan<Byte>)

List all targets cards in range When using this function, you can't determine which target you've read So you'll need to use the Decode functions to try to get a card type So use this function only with a specific card type. Prefer the AutoPoll function As the type identified is returned

ListPassiveTarget(MaxTarget, TargetBaudRate)

List all targets cards in range When using this function, you can't determine which target you've read So you'll need to use the Decode functions to try to get a card type So use this function only with a specific card type. Prefer the AutoPoll function As the type identified is returned

public byte[]? ListPassiveTarget (Iot.Device.Pn532.ListPassive.MaxTarget maxTarget, Iot.Device.Pn532.ListPassive.TargetBaudRate targetBaudRate);
member this.ListPassiveTarget : Iot.Device.Pn532.ListPassive.MaxTarget * Iot.Device.Pn532.ListPassive.TargetBaudRate -> byte[]
Public Function ListPassiveTarget (maxTarget As MaxTarget, targetBaudRate As TargetBaudRate) As Byte()

Parameters

maxTarget
MaxTarget

The maximum number of targets

targetBaudRate
TargetBaudRate

The baud rate to use

Returns

Byte[]

A raw byte array with the data of the targets if any has been identified

Applies to

ListPassiveTarget(MaxTarget, TargetBaudRate, ReadOnlySpan<Byte>)

List all targets cards in range When using this function, you can't determine which target you've read So you'll need to use the Decode functions to try to get a card type So use this function only with a specific card type. Prefer the AutoPoll function As the type identified is returned

public byte[]? ListPassiveTarget (Iot.Device.Pn532.ListPassive.MaxTarget maxTarget, Iot.Device.Pn532.ListPassive.TargetBaudRate targetBaudRate, ReadOnlySpan<byte> initiatorData);
member this.ListPassiveTarget : Iot.Device.Pn532.ListPassive.MaxTarget * Iot.Device.Pn532.ListPassive.TargetBaudRate * ReadOnlySpan<byte> -> byte[]
Public Function ListPassiveTarget (maxTarget As MaxTarget, targetBaudRate As TargetBaudRate, initiatorData As ReadOnlySpan(Of Byte)) As Byte()

Parameters

maxTarget
MaxTarget

The maximum number of targets

targetBaudRate
TargetBaudRate

The baud rate to use to find cards

initiatorData
ReadOnlySpan<Byte>

Specific initialization data

Returns

Byte[]

A raw byte array with the data of the targets if any has been identified

Applies to