R5905948 /12 Event Master Devices562
• Example:
- {"params": {"id": 1}, "method":"activateCue", "id":"1234", "jsonrpc":"2.0"}
//Play – no parame or type 0
- {"params": {"type": 1}, "method":"activateCue", "id":"1234", "jsonrpc":"2.0"}
//Pause – type 1
- {"params": {"type": 2}, "method":"activateCue", "id":"1234", "jsonrpc":"2.0"}
//Stop – type 2
activateDestGroup
• Definition:
- Recall a DestGroup on the Event Master processor. User can recall DestGroup with id, DestGroup
serial number, or DestGroup name.
- Send any one of the parameters to recall DestGroup.
• Request:
- params: {"id": x}
- params: {"destGrpSno": x.y}
- params: {"destGrName": "GroupName"}
• Response:
- response: null
- success: (0=success, anything else is an error)
• Example:
- {"params": {"id": 0}, "method":"activateDestGroup", "id":"1234",
"jsonrpc":"2.0"}
- {"params": {"destGrpName": "abc" }, "method":"activateDestGroup", "id":"1234",
"jsonrpc":"2.0"}
- {"params": {"destGrpSno": 1.00}, "method":"activateDestGroup", "id":"1234",
"jsonrpc":"2.0"}
listCues
• Definition:
- This API lists all the cues.
• Request:
- params: {}, "method":"listCues", "id":"1234", "jsonrpc":"2.0"}
• Response:
- response: Array of cue objects.
- success: (0=success, anything else is an error)
• Example:
- {"params": {}, "method":"listCues", "id":"1234", "jsonrpc":"2.0"}
3dControl
• Definition:
- This API provides the option to modify 3d Controls.
• Request:
- params: {"id" : id, "type": x, "syncSource": y, "syncInvert": z}
◦ id – Index of the input config.
◦ type – "x" can be: 0 – Type Off. 0 is the default value for the type parameter. 1 – Type Sequentia.
◦ syncSource – "y" can be: 1 – mini-Din 1, 2 – mini-Din 2, 3 – mini-Din 3, 4 – mini-Din 4. Default value
is 1.
◦ syncInvert – "z" can be: 0 – Type Off. 0 is the default value for the syncInvert. 1 – Type Invert.
◦ To reset, do not provide any parameter except "id".
• Response:
- response: {"id": 0, "Name": "InSource1", "HSize": 3840, "VSize": 1080,
"Src-Type": 0, "InputCfgIndex": -1, "StillIndex": 0, "DestIndex": -1,
"UserKeyIndex": -1, "Mode3D": 0, "Freeze": 1, "Capacity": 2,
"InputCfgVideoStatus": 4}
- success: (0=success, anything else is an error)
• Example:
- {"params": {"id": 1, "type": 0, "syncSource": 1, "syncInvert": 0},
Remote Control Protocol