UniPRT SDK  v1.0.0.0
Rfid_WriteBitField Class Reference

RFID Bit Field Properties for writing. More...

Public Member Functions

 Rfid_WriteBitField (int bitCount, PGL.Rfid_Format dataFormat, String data)
 
int GetBitCount ()
 The number of bits in field.
 
String GetData ()
 Data that will be written. String provided in the proper set of characters based on format. Binary, Hex, Decimal, String. More...
 
PGL.Rfid_Format GetDataFormat ()
 Data type. Binary, Hex, Decimal, String.
 
void SetBitCount (int bitCount)
 
void SetData (String data)
 
void SetDataFormat (PGL.Rfid_Format dataFormat)
 

Detailed Description

RFID Bit Field Properties for writing.

Supports static data format: length;format;(D)datafield(D)

Member Function Documentation

◆ GetData()

String GetData ( )

Data that will be written. String provided in the proper set of characters based on format. Binary, Hex, Decimal, String.

Although all data is a string, the limiting factor is the characters within the string based on the data format being written. Examples:

  • Binary: "0101"
  • Hex: "AF29CD"
  • Decimal: "1975"
  • String: "June 15, 1215"