Package rst.devices.rfid

A package with data types for handling RFID tags and readers.

Messages

clearer: should be made invisible via css

Message TagCollection

class rst.devices.rfid.TagCollection

Collection of Tag instances.

Auto-generated.

element
Type:array of rst.devices.rfid.Tag

The individual elements of the collection.

Constraints regarding the empty collection, sorting, duplicated entries etc. are use case specific.

Download this file

message TagCollection {

    /**
     * The individual elements of the collection.
     *
     * Constraints regarding the empty collection, sorting, duplicated
     * entries etc. are use case specific.
     */
    repeated Tag element = 1;

}

Message Tag

class rst.devices.rfid.Tag

Provides information about an RFID tag instance.

Code author: Johannes Wienke <jwienke@techfak.uni-bielefeld.de>

Code author: Sebastian Wrede <swrede@techfak.uni-bielefeld.de>

@create_collection

id
Type:OCTET-VECTOR

The ID to identify the tag.

ASCII string encoding.

vendor
Type:OCTET-VECTOR

The name of the tag vendor.

ASCII string encoding.

source
Type:OCTET-VECTOR

Source of this information, e.g. a reader instance.

ASCII string encoding.

Download this file

message Tag {

    /**
     * The ID to identify the tag.
     *
     * ASCII string encoding.
     */
    required bytes id = 1;

    /**
     * The name of the tag vendor.
     *
     * ASCII string encoding.
     */
    optional bytes vendor = 2;

    /**
     * Source of this information, e.g. a reader instance.
     *
     * ASCII string encoding.
     */
    optional bytes source = 3;

}