v1.5.0 - Add "nowait" Option to Commands
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
- @dominikkarall made their first contribution in #127
- @manj9501 made their first contribution in #133
- @mafrosis made their first contribution in #135
- @mont5piques made their first contribution in #137
- @Whytey made their first contribution in #138
# 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