Inventory Control Settings¶
This section will describe how the FxConnect Inventory control parameters can be translated to IoT Connector settings.
Inventory Control in FxConnect¶
The following screenshot shows the FxConnect Inventory Control parameters.
The following table lists the parameters and how they can be configured in the IoT Connector.
¶ Parameter
FxConnect
IoT Connector
Start Trigger
Supports
Immediate
,Time Delay
,GPI Trigger
,Periodic Trigger
only supports
Immediate
andGPI Trigger
modes of Start TriggerStop Trigger
Supports
Time Delay
,GPI Trigger
,Tag Observation
,N rounds
Supports
Time Delay
,GPI Trigger
,Tag Observation
,N rounds
Session
Supports
S0
,S1
,S2
,S3
Supports
S0
,S1
,S2
,S3
Periodic Reporting
Sets the duration with which a tag is reported.
Supported as ReportFilter in Operating Mode
Autostart
Autostarts the FxConnect operation on startup
Supported as AutoStart for
IoT Connector
.
Migrating Inventory Control Settings¶
The following table illustrate the IoT Connector operating mode that must be configured on the reader to effectively migrate the FxConnect configuration.
¶ FxConnect Parameter
Value
Operating Mode
Start Trigger
Immediate
{“type”: “CUSTOM”}Start Trigger
GPI Trigger
, Port1
, stateHigh
{“type”: “CUSTOM”,“radioStartConditions”: {“type”: “GPI”,“gpis”: [{“port”: 1,“signal”: “HIGH”}]}}Stop Trigger
Time Delay
{“type”: “CUSTOM”,“radioStopConditions”: {“duration”: <duration>}}Stop Trigger
GPI Trigger
{“type”: “CUSTOM”,“radioStopConditions”: {“gpis”: [“port” : 1,“signal” : “HIGH”]}}Stop Trigger
Tag Observation
{“type”: “CUSTOM”,“radioStopConditions”: {“tagCount”: 100}}Stop Trigger
N rounds
{“type”: “CUSTOM”,“radioStopConditions”: {“antennaCycles”: 10}}Session
Supports
S0
,S1
,S2
,S3
{“type”: “CUSTOM”,“query”: {“session”: “S0”}}Periodic Reporting
Sets the duration with which a tag is reported.
{“type”: “CUSTOM”,“reportFilter”: {“duration”: 1,“type”: “RADIO_WIDE”}}Autostart
Autostarts the FxConnect operation on startup
Check the Auto Connect checkbox in the Zebra IoT Connector > Connection Page.
Configuring Operating Mode in IoT Connector¶
In IoT Connector
, the equivalent for Inventory Control is called the Operating Mode. For more information on Operating Modes refer this section.
To configure the Operating Mode via Local REST interface, make sure that the Local Rest Management
and Local Rest Control
check boxes are checked in Communication > Zebra IoT Connector > Configuration page.
click on Connect
button in Communication > Zebra IoT Connector > Connection page.
Download and import the Postman Collection for
Local Rest
Edit the reader-ip and protocol postman variables appropriately.
Get JWT Token using the Login API as shown below.
Insert the JWT token in the Authorization header as Bearer Token in PUT Mode API.
Insert the Body for the Operating Mode as per the table provided in the above section and click on Send.
Example¶
In this section an example FxConnect Inventory Control configuration will be converted to IoT Connector
Operating Mode.
The Above configuration can be converted to the IoT Connector
Operating Mode as below.
{ "type": "CUSTOM", "radioStartConditions": { "type": "GPI", "gpis": [{ "port": 1, "signal": "HIGH" }] }, "radioStopConditions": { "tagCount": 100 }, "query":{ "session": "S0" }, "reportFilter": { "duration": 5, "type": RADIO_WIDE } }