Skip to main content
Version: 2.6

BALLUFF BIS-V Commands

The connector supports following commands:

  • ReadUserData.{x}
  • WriteUserData.{x}

Reading User Data

Reads the user data from the RFID tag.

The command needs following inputs:

ArgumentDescriptionData Type
SizeSize of the data in bytesSystem.Int32

The command needs following outputs:

ArgumentDescriptionData Type
TagIdTag idSystem.String
DataUser DataSystem.Byte[]
{
"Id": "143FB14C-0509-442F-B38B-1FDADD372E0E",
"Name": "ReadUserData",
"Type": "CommandNode",
"Address": "ReadUserData.1",
"Arguments": [
{
"Name": "Size",
"Type": "Input",
"DataType": "System.Int32"
},
{
"Name": "TagId",
"Type": "Output",
"DataType": "System.String"
},
{
"Name": "Data",
"Type": "Output",
"DataType": "System.Byte[]"
}
]
}

Writing User Data

Writing the user data to RFID tag.

The command needs following inputs:

ArgumentDescriptionData Type
TagIdTag id (Optional)System.String
DataUser DataSystem.Byte[]

If the TagId is set, the user-data is only written to the RFID if the TagId matches.

{
"Id": "179035F5-68E8-4098-85FA-ED2567B56D0B",
"Name": "WriteUserData",
"Type": "CommandNode",
"Address": "WriteUserData.1",
"Arguments": [
{
"Name": "TagId",
"Type": "Input",
"DataType": "System.String"
},
{
"Name": "Data",
"Type": "Input",
"DataType": "System.Byte[]"
}
]
}