2016-09-21 22:01:50 +02:00
|
|
|
import hyperion, time
|
2013-11-30 17:42:57 +01:00
|
|
|
|
2013-11-30 17:46:07 +01:00
|
|
|
# Get the parameters
|
2013-12-08 16:23:01 +01:00
|
|
|
rotationTime = float(hyperion.args.get('rotation-time', 3.0))
|
2016-09-21 22:01:50 +02:00
|
|
|
reverse = bool(hyperion.args.get('reverse', False))
|
|
|
|
centerX = float(hyperion.args.get('center_x', 0.5))
|
|
|
|
centerY = float(hyperion.args.get('center_y', 0.5))
|
2013-11-30 17:42:57 +01:00
|
|
|
|
2016-09-21 22:01:50 +02:00
|
|
|
sleepTime = max(0.1, rotationTime) / 360
|
|
|
|
angle = 0
|
|
|
|
centerX = int(round(hyperion.imageWidth)*centerX)
|
|
|
|
centerY = int(round(float(hyperion.imageHeight)*centerY))
|
|
|
|
increment = -1 if reverse else 1
|
2013-12-01 15:22:51 +01:00
|
|
|
|
2016-09-21 22:01:50 +02:00
|
|
|
# table of stop colors for rainbow gradient, first is the position, next rgb, all values 0-255
|
|
|
|
rainbowColors = bytearray([
|
|
|
|
0 ,255,0 ,0,
|
|
|
|
25 ,255,230,0,
|
|
|
|
63 ,255,255,0,
|
|
|
|
100,0 ,255,0,
|
|
|
|
127,0 ,255,200,
|
|
|
|
159,0 ,255,255,
|
|
|
|
191,0 ,0 ,255,
|
|
|
|
224,255,0 ,255,
|
|
|
|
255,255,0 ,127,
|
|
|
|
])
|
2013-11-30 17:42:57 +01:00
|
|
|
|
2016-09-21 22:01:50 +02:00
|
|
|
# effect loop
|
2013-11-30 17:42:57 +01:00
|
|
|
while not hyperion.abort():
|
2016-09-21 22:01:50 +02:00
|
|
|
angle += increment
|
|
|
|
if angle > 360: angle=0
|
|
|
|
if angle < 0: angle=360
|
|
|
|
|
|
|
|
hyperion.imageCanonicalGradient(centerX, centerY, angle, rainbowColors)
|
|
|
|
|
|
|
|
hyperion.imageShow()
|
2013-11-30 17:42:57 +01:00
|
|
|
time.sleep(sleepTime)
|