qsys_get
Retrieve current values from specific controls in a Q-SYS audio/video system using WebSocket connection. Input control paths in 'Component.control' format to get real-time data.
Instructions
Get current values from controls
Input Schema
Name | Required | Description | Default |
---|---|---|---|
controls | Yes | Control paths in 'Component.control' format |
Input Schema (JSON Schema)
{
"properties": {
"controls": {
"description": "Control paths in 'Component.control' format",
"items": {
"type": "string"
},
"maxItems": 100,
"minItems": 1,
"type": "array"
}
},
"required": [
"controls"
],
"type": "object"
}