RemoteControl
Enable / disable controlling of the unit controls. This will allow the LEDs or LCD to be updated or panel button pushes to be detected.
Syntax: see Call Structure
{ "method": "cbrx_connection_set", "params": [ connection-handle, "RemoteControl", Value ] } |
Parameter | Description |
---|---|
connection-handle | The Connection Handles as an integer |
Value | The value you wish to set for the key |
Value | Description |
---|---|
true | Enable manual remote control mode |
false | Disable manual remote control mode |
"auto" | Enable auto control mode via the API |
Returns:
{ "result": true } |
Errors
If there is an error in the API method then a JSON-RPC Error Object will be returned.
Example
Copy
{
"id": 0,
"jsonrpc": "2.0",
"method": "cbrx_connection_set",
"params": [
7654,
"RemoteControl",
"true"
]
}