I am working on a synoptic software for CCS1000d. I have set up the API interface and integrated some API options. Currently I have problem with the active speakers list. I have connected two seats and one camera and assigned the camera to one of the seats. When I try to get the speakers list I always get the selected as FALSE even the speaker is active (I have tried all speaking modes 0,2,3). I have tested both of setas and also tried manually and programmatically activating and deactivating of speakers but the SELECTED is always returned as FALSE. This is a sample of output XML result when the user 513 is active and the red light on the micophone is on: [{"connected": true, "name": "Seat 1", "prio": false, "unitId": 513, "cameraPrepos": 0, "selected": false, "id": 1, "cameraId": 1, "mode": 2}, {"connected": true, "name": "Seat 2", "prio": false, "unitId": 514, "cameraPrepos": -1, "selected": false, "id": 2, "cameraId": -1, "mode": 2}] Do I really need to check SELECTED to find the active speaker? Thanks.
... View more