Skip to content

Commit

Permalink
forgot the floats
Browse files Browse the repository at this point in the history
  • Loading branch information
longjos committed Jul 15, 2014
1 parent 4b1cca3 commit 55032f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions raspledstrip/animation.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,8 +383,8 @@ def __init__(self, led_driver, red, green, blue, min_brightness, max_brightness,
self._base_red = red
self._base_green = green
self._base_blue = blue
self._min_bright = min_brightness
self._max_bright = max_brightness
self._min_bright = float(min_brightness)
self._max_bright = float(max_brightness)
self._direction = 1
super(BreathingLight, self).__init__(led_driver, start, end)

Expand Down

0 comments on commit 55032f8

Please sign in to comment.