get_output_bit_register
Retrieve the boolean value of a specified register from a Universal Robot by providing its IP address and register index (0-23) for precise control and monitoring.
Instructions
获取指定IP机器人Bool寄存器的值, IP:机器人地址 index:寄存器下标,范围是[0,23]
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| index | Yes | ||
| ip | Yes |
Input Schema (JSON Schema)
{
"properties": {
"index": {
"title": "Index",
"type": "integer"
},
"ip": {
"title": "Ip",
"type": "string"
}
},
"required": [
"ip",
"index"
],
"title": "get_output_bit_registerArguments",
"type": "object"
}