Jump to: navigation, search

RFID tags


Revision as of 11:41, 31 July 2019 by CHI (Talk | contribs)

[edit]

Android

In order for the users to find objects more efficiently, UBIK® objects can be marked with values for RFID codes. Whenever a user scans an RFID code, the resulting code value can be used to find all matching objects, namely objects that have the right property.

This feature is available since Version 2.4.2 - Android .

Introduction: RFID & NFC

NFC stands for "Near Field Communication" and is a set of ideas and technologies for data transfer between devices, typically in close distances. Technically, it is based on RFID ("Radio-Frequency Identification"), which describes specific technical solutions.

Amongst the use cases for NFC, there is communication between smartphones and other devices, but also the scanning of RFID tags.

The UBIK® RFID scanning feature specifically is the ability to scan RFID tags in order to identify UBIK® objects.

Supported RFID Tags

There are three types of RFID markers supported by UBIK®:

Standard Tested Tag technologies
NfcA (RFID standard: ISO-14443A) EV1(MFOUL11), NTAG 216, NTAG 210, NTAG 213
NfcB (RFID standard: ISO-14443B) -
NfcV (RFID standard: ISO-15693) ICode SLIX(SL2S2002), ICode SLI(SL2ICS20)




NFC Scan Result Type

Depending on the NFC Scan Result Type setting, UBIK® can extract different types of information from a scanned RFID tag:

NFC Scan Result Type Comment
Identifier (Hexadecimal) Extracts the write-protected identifier of a scanned tag in hexadecimal form. The identifier is given by the manufacturer and can´t be manipulated.
Content (Hexadecimal) Extracts the raw content of a scanned tag in hexadecimal form. Not supported on the Getac Z710. NfcB tags are not supported.
Content (ASCII) Extracts the raw content of a scanned tag in ASCII form. Not supported on the Getac Z710. NfcB tags are not supported.
Content (NDEF) Extracts NDEF messages of type "Text" or "text/plain" from a scanned tag. Not supported on the Getac Z710.

Configurable start screen RFID button

In order to use this feature, a RFID scanning entry point is provided using a configurable start start screen button. The following xml shows an example start screen configuration including RFID scanning entry point:

          <StartScreenConfiguration>
            <Tab caption="Content">
              <ContentBrowserButton caption="Content Browser"/>
              <RFIDScanButton caption="RFID Scan" />
            </Tab>
          </StartScreenConfiguration>

Scanning an RFID tag

RFID button on Start Screen
RFID button on Start Screen
Scanning for RFID tag
Scanning for RFID tag

Once the RFID button in the start screen is clicked, the corresponding RFID scanner starts. The user is then able to scan RFID tags continuously.

Presenting results of a search

Searching for Objects
Searching for Objects
Displaying Objects
Displaying Objects
No corresponding Objects
No corresponding Objects

Once the ID of the tag is scanned, UBIK® starts searching for objects with the scanned RFID.

  1. During the search, the list might show a searching text before any objects are found;
  2. If any objects are found, they will be displayed in a list. The users can then browse to any of the objects for more information by clicking on the objects;
  3. If no objects are found, the list will show a corresponding text.

Searching Mechanism

UBIK® provides two mechanisms for searching objects: online and offline.

Searching offline

In any case (regardless of the network connection and sync mode), UBIK® always goes through all the objects currently available on the device and find the ones that match the scanned results.

Searching online

When the Internet is available and UBIK® is not running under offline mode, the search result is enhanced by online search. This means any objects that match the scanned results can be found even if they don't yet exist locally.




Technical background

In order for objects to be identifiable through RFID, they have to carry the SYSCLS OBJECTWITHRFIDTAG classification.

The service query used for online searching is SYSCLS RFIDTAGSCANQUERY.

See also



WinX Internal Scanner

This feature is available since Version 2.5.4 - WinX.

Supported RFID Tags

There are three types of RFID markers supported by UBIK®:

  • NfcA (RFID standard: ISO-14443A)
  • NfcB (RFID standard: ISO-14443B)
  • NfcV (RFID standard: ISO-15693)

UBIK® WinX scans these tags for a NDEF message. Tags which are not NDEF formatted are not supported by the WinX client.



Scanning an RFID tag

Scanning for NFC tag
Scanning for NFC tag

A NFC Scan button is shown in the Global App Bar if the device is capable of scanning NFC tags. Pressing the NFC Scan button enables/disables NFC scanning throughout the whole application. That means once the NFC scanning is activated, one can use the application just as usually while UBIK® scans for NFC tags in the background.

Presenting results of a search

No object found message
No object found message
Multiple search results dialog
Multiple search results dialog

Once a tag is successfully scanned, an object search is executed based on the tag´s NDEF message.

  1. if no objects are found a message is poping up at the right side of the screen.
  2. if more than one object is found the results are represented in a dialog along with their matching probability. One can than select one object that should be opened in the content browser.
  3. if exactly one object is found, this object is directly opened in the content browser.

WinX External Scanner

Since Version 3.6.0 - WinX it is possible to use external Bluetooth RFID Readers for Scanning RFID Tags.

Preliminaries

To use an external Bluetooth RFID Reader within UBIK®, the device has to be brought into the Bluetooth SPP (Serial Port Profile) Mode first. Check the manual of the device on how to do that. Once SPP is active, the reader has to be paired with the UBIK® host device. Afterwards it can be used for scanning RFID Tags.

RFID Configuration File

Information needed for communicating with an external Bluetooth RFID Reader are stored in a ".rfconfig file". This file has to be placed in the local RFIDConfiguration folder: {AppData}\LocalState\RFIDConfiguration\.rfconfig. The name of the ".rfconfig" file is irrelevant. The configuration file contains the following information:

Information Type Description
ScannerIdentifier String The Bluetooth Name of the RFID Scanner.
DefaultScanning Boolean (true,false) Specifies wheter scanning is active as default or not.
IgnoreReply Boolean (true,false) Some Scanners might send reply messages once a Blue-tooth Command was applied. If IgnoreReply is set to true, these messages aren´t used for further processing.
Substring String of format: x,y Extracts a substring of the scanned RFID Tag for further processing. x…index of the first character y… length of the substring
Replace String of format: x,y Replaces a character of the scanned RFID Tag for further processing. x…old character y…new character
StartCommands List of Strings List of Bluetooth Commands that are send to the RFID Reader when scanning is started.
ScanningCommands List of Strings List of Bluetooth Commands that are send to the RFID Reader when a Tag got scanned.
StopCommands List of Strings List of Bluetooth Commands that are send to the RFID Reader when scanning is stoped.