API v1.16 Release Notes

This version of the API shipped with Indigo 6.0.13 - check the API Version Chart to see what version of the API is available in which Indigo versions.

Examples
dev = indigo.devices[147133556]		# "some Z-Wave or INSTEON module"
result = indigo.device.ping(dev, suppressLogging=True)
if result["Success"]:
    indigo.server.log("%.3f seconds ping for %s" % (result["TimeDelta"]/1000.0, dev.name))
else:
    indigo.server.log("ping failed for %s" % (dev.name), isError=True)