SendCommand
Bizerba SOAP API (_connect.BRAIN)
Direct Communication TCP/IP
Example Requests
Get software version
let result = await app.businessFunction({
//Common Parameters for all functions
functionName: "BizerbaScale",
methodName: "SendCommand",
silentMode: false, //false is default. If set to true, the Gebra Suite will not show an error message box. it is up to you to inform the user.
ip: "192.168.0.100", //The IP of the device
port: 1365, //Network port
command: "I?GV05|LX02" //IxNet command
timeout: 15 //Timeout in seconds for the request
});Reboot device
let result = await app.businessFunction({
//Common Parameters for all functions
functionName: "BizerbaScale",
methodName: "SendCommand",
silentMode: false, //false is default. If set to true, the Gebra Suite will not show an error message box. it is up to you to inform the user.
ip: "192.168.0.100", //The IP of the device
port: 1365, //Network port
command: "I!GX01" //IxNet command
timeout: 15 //Timeout in seconds for the request
});Get weight without rest rating
Get weight with rest rating
Example Response
Last updated