Any way to get/set the "Video Sync" Zone-Setting per WebAPI?
I have adopted the API into my smarthome-control but the only thing currently missing, is the ability to enabled and disable the Video-Sync Setting for a Zone. Is this going to be available any time soon?
THx
THx
0
Best Answer
-
JustAnotherUser Member Posts: 17
Yes this is possible. Just not documented in the API.
To GET
GET: http://<deviceIP>:8090/rebroadcastlatencymode
To SET
POST: http://<deviceIP>:8090/rebroadcastlatencymode
Data SyncToRoom: <rebroadcastlatencymode mode="SYNC_TO_ROOM" /></rebroadcastlatencymode>
Data SyncToZone: <rebroadcastlatencymode mode="SYNC_TO_ZONE" /></rebroadcastlatencymode>
Example
curl --data '<rebroadcastlatencymode mode="SYNC_TO_ZONE" /></rebroadcastlatencymode>' http://192.168.1.50:8090/rebroadcastlatencymode
5
Answers