Fixed bug in strobe.py

Former-commit-id: b951ab7140
This commit is contained in:
T. van der Zwan 2013-12-14 05:55:06 +00:00
parent 474b9370a5
commit 1161748013
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -14,7 +14,7 @@ sleepTime = 1.0 / frequency
# Initialize the led data
blackLedsData = bytearray(hyperion.ledCount * ( 0, 0, 0))
whiteLedsData = bytearray(hyperion.ledCount * colo)
whiteLedsData = bytearray(hyperion.ledCount * color)
# Start the write data loop
while not hyperion.abort():