This release includes a number of changes to the way commands are performed, please refer to the updated documentation, and updated example files to learn more!
This release also includes support for async functionality :sparkles:.
1.1
- Remove passing in an unneeded identity to `coap-client` (ws141 - 15) - Add basic support for smart tasks (ggravlingen - 18)
- Always pass url as last argument to fix issue on OS X (viernullvier - 19) - Add support for observing devices and groups (balloob - 20)
python def change_listener(device): print(device.name + " is now " + str(device.light_control.lights[0].state))
lights[0].observe(change_listener)
- Add `set_state` and `set_dimmer` to groups (balloob - 20)
python group.set_state(0) group.set_dimmer(130)
- Fix `script/dev_docker` on OS X (tomgidden - 21)
1.0
First official release.
Breaking change with the 0.x series: `coap-client` now has to be compiled without debug output. (Thanks to rubenbe - 12). See our [updated installation instructions](https://github.com/ggravlingen/pytradfri#installation).