Skip to content

v1.5.0 - Add "nowait" Option to Commands

Compare
Choose a tag to compare
@jasonacox jasonacox released this 05 Jun 04:20
· 645 commits to master since this release

What's Changed

  • PyPI 1.5.0
  • Added an optional 'nowait' boolean setting (True/False) to functions to allow sending commands without waiting for a device response. (Issue #74)
  • Support optional version parameter by @dominikkarall in #127
  • Update README.md to reflect new DPs for v3.3 Plug by @manj9501 in #133
  • Some cleanup from pylint by @mafrosis in #135
  • Add Universal IR Controller DP instructions by @mont5piques in #137
  • Added robot mower data by @Whytey in #138

New Contributors

# Example use of nowait option
d.turn_on(nowait=True)
d.set_colour(r, g, b, nowait=True)
d.set_value(201, '9AEmAvQBJgL0ASYCQAYmAkAGJgJABiY', nowait=True)  # send IR command
d.set_value(25, '010e0d0000000000000003e803e8', nowait=True)      # set scene

Full Changelog: v1.4.0...v1.5.0