2013-12-13 23:00:57 +01:00
|
|
|
import hyperion
|
|
|
|
import time
|
|
|
|
import colorsys
|
|
|
|
|
|
|
|
# Get the rotation time
|
2013-12-14 03:03:21 +01:00
|
|
|
color = hyperion.args.get('color', (255,255,255))
|
2013-12-13 23:00:57 +01:00
|
|
|
frequency = float(hyperion.args.get('frequency', 10.0))
|
|
|
|
|
|
|
|
# Check parameters
|
|
|
|
frequency = min(100.0, frequency)
|
|
|
|
|
|
|
|
# Compute the strobe interval
|
|
|
|
sleepTime = 1.0 / frequency
|
|
|
|
|
|
|
|
# Initialize the led data
|
|
|
|
blackLedsData = bytearray(hyperion.ledCount * ( 0, 0, 0))
|
2013-12-14 06:55:06 +01:00
|
|
|
whiteLedsData = bytearray(hyperion.ledCount * color)
|
2013-12-13 23:00:57 +01:00
|
|
|
|
|
|
|
# Start the write data loop
|
|
|
|
while not hyperion.abort():
|
|
|
|
hyperion.setColor(blackLedsData)
|
|
|
|
time.sleep(sleepTime)
|
|
|
|
hyperion.setColor(whiteLedsData)
|
|
|
|
time.sleep(sleepTime)
|