Skip to content

Commit

Permalink
Allow transition turn off
Browse files Browse the repository at this point in the history
  • Loading branch information
lwis committed Mar 23, 2018
1 parent a8ab326 commit 52ebf2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pytradfri/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
# slightly higher values, but it won't produce any light.
RANGE_SATURATION = (0, 65279)
# Brightness range of all bulbs. 0 will turn off the lamp
RANGE_BRIGHTNESS = (1, 254)
RANGE_BRIGHTNESS = (0, 254)

# XY color
RANGE_X = (0, 65535)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

VERSION = "5.4.1"
VERSION = "5.4.2"
DOWNLOAD_URL = \
'https://github.com/ggravlingen/pytradfri/archive/{}.zip'.format(VERSION)

Expand Down

0 comments on commit 52ebf2f

Please sign in to comment.