Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
api_release_notes:1.14 [2014/01/14 18:05] – created mattbapi_release_notes:1.14 [2026/04/07 18:27] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== API v1.14 Release Notes ======
 +This version of the API shipped with Indigo 6.0.8 - check the [[:API Version Chart]] to see what version of the API is available in which Indigo versions.
 +
 +  * Added //''getGroupList()''// method to indigo.device command space to retrieve an ID list of all devices in a group. The argument can be any device ID or device instance in the group. The returned list is ordered, with the main/root device ID being first.
 +
 +^  Examples  ^
 +|<code>groupList = indigo.device.getGroupList(devIdOrInstance)
 +rootDevice = indigo.devices[groupList[0]]
 +indigo.server.log("battery level is: " + str(rootDevice.batteryLevel))</code>|