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:
Argument | Description | Data Type |
---|---|---|
Size | Size of the data in bytes | System.Int32 |
The command needs following outputs:
Argument | Description | Data Type |
---|---|---|
TagId | Tag id | System.String |
Data | User Data | System.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:
Argument | Description | Data Type |
---|---|---|
TagId | Tag id (Optional) | System.String |
Data | User Data | System.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[]"
}
]
}