Test Reader Connection To CloudΒΆ

  1. Navigate to AWS IoT > Test to test device connection.

    ../../_images/AWS_14.png
  2. Create subscriptions to topics used.

    ../../_images/AWS_15.png
  3. Asynchronous Management Events will be received once device got connected with IoT Core.

    ../../_images/AWS_16.png
  4. To send commands to device use Publish To Topic.

    1. Get version from reader.

    command to Request version information.

    {
        "command": "get_version",
        "command_id": "16266718797272556",
        "payload": {}
    }
    

    response from device:

    ../../_images/AWS_17.png
    1. Starting Inventory.

    command to start inventory.

    {
        "command": "start",
        "command_id": "16266718797272556",
        "payload": {}
    }
    

    tag events from device:

    ../../_images/AWS_18.png
    1. Stopping Inventory.

    command to stop inventory.

    {
        "command": "stop",
        "command_id": "16266718797272556",
        "payload": {}
    }
    

    response from device:

    ../../_images/AWS_19.png

Important

For full set of supported commands refer RAW MQTT Payload Schemas section.