Skip to content

Releases: home-assistant-libs/pytradfri

Streamlined dependencies, fixed API return types

15 Oct 08:15
Compare
Choose a tag to compare
  • Dependencies have been streamlined a little more, the DTLSSocket package is now used in place of installing tinydtls from git.

  • (Breaking) API return types should now be consistent, if you pass a list, expect a list, if you pass a single command, expect a single result.

Aiocoap and gateway maintenance

13 Oct 22:36
Compare
Choose a tag to compare

Fix upstream changes, pin commit for aiocoap

01 Oct 08:10
Compare
Choose a tag to compare

2.2: Support for RGB and other fixes

29 Aug 18:23
Compare
Choose a tag to compare

Update README.md with note about cython3 (#45, @Decker108)
Set global UTF-8 locale (#47, @matemaciek)
Support for setting colour in Kelvin for the whole spectrum (#48, @matemaciek)
Fix git URL in aiocoap.sh (#49, @cosmix)
Add sRGB to xyY conversion (#51, @r41d)

2.1: Minor changes to cache protocol internally

22 Jun 12:07
Compare
Choose a tag to compare

2.0: Sans-IO

14 Jun 16:08
Compare
Choose a tag to compare

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 ✨.

1.1

25 Apr 04:20
Compare
Choose a tag to compare
1.1
  • Remove passing in an unneeded identity to coap-client (@ws141 - #15)
  • Add basic support for smart tasks (@ggravlingen - #18)
tasks = gateway.get_smart_tasks()
tasks[0].repeat_days_list
  • Always pass url as last argument to fix issue on OS X (@viernullvier - #19)
  • Add support for observing devices and groups (@balloob - #20)
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)
group.set_state(0)
group.set_dimmer(130)

1.0

18 Apr 14:53
Compare
Choose a tag to compare
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.

v0.5: Merge pull request #10 from ggravlingen/add-retry

16 Apr 09:18
Compare
Choose a tag to compare

v0.4

12 Apr 17:46
Compare
Choose a tag to compare
Changed libname