qsys_connect
Establish WebSocket connections to Q-SYS Core processors for controlling and monitoring audio/video systems, managing components, and handling system status with secure protocols.
Instructions
Connect to Q-SYS Core processor
Input Schema
Name | Required | Description | Default |
---|---|---|---|
host | Yes | IP address or hostname of Q-SYS Core | |
pollingInterval | No | Control polling interval in ms (min: 34, default: 350) | |
port | No | WebSocket port (default: 443) | |
secure | No | Use secure WebSocket (wss://) |
Input Schema (JSON Schema)
{
"properties": {
"host": {
"description": "IP address or hostname of Q-SYS Core",
"type": "string"
},
"pollingInterval": {
"default": 350,
"description": "Control polling interval in ms (min: 34, default: 350)",
"minimum": 34,
"type": "number"
},
"port": {
"default": 443,
"description": "WebSocket port (default: 443)",
"type": "number"
},
"secure": {
"default": true,
"description": "Use secure WebSocket (wss://)",
"type": "boolean"
}
},
"required": [
"host"
],
"type": "object"
}