Trigger Settings Tutorial

Trigger Settings Tutorial in RFID API3

The Trigger Settings in RFID API-3 is part of the Operating Mode configuration in IoT Connector.

The following table illustrate the IoT Connector operating mode that must be configured on the reader for using Trigger functionalities.

Operating Modes for IoT Connector Trigger Settings.

RFID API-3 Parameter

Value

Operating Mode

Start Trigger

Immediate

{
“type”: “CUSTOM”
}

Start Trigger

GPI Trigger, Port 1, state High

{
“type”: “CUSTOM”,
“radioStartConditions”: {
“type”: “GPI”,
“gpis”: [{
“port”: 1,
“signal”: “HIGH”
}]
}
}

Stop Trigger

Immediate

{
“type”: “CUSTOM”
}

Stop Trigger

Tag Observation

{
“type”: “CUSTOM”,
“radioStopConditions”: {
“tagCount”: 100
}
}

Stop Trigger

Time Delay

{
“type”: “CUSTOM”,
“radioStopConditions”: {
“duration”: 1000
}
}

Stop Trigger

N rounds

{
“type”: “CUSTOM”,
“radioStopConditions”: {
“antennaCycles”: 10
}
}

Stop Trigger

GPI Trigger

{
“type”: “CUSTOM”,
“radioStopConditions”: {
“gpis”: [
“port” : 1,
“signal” : “HIGH”
]
}
}