mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
6b3f0e42b5
* fix strobe effect frequency * Changed the frequency in the effect definitions
19 lines
460 B
Python
19 lines
460 B
Python
import hyperion, time
|
|
|
|
# Get the rotation time
|
|
color = hyperion.args.get('color', (255,255,255))
|
|
frequency = float(hyperion.args.get('frequency', 10.0))
|
|
|
|
# Check parameters
|
|
frequency = min(100.0, frequency)
|
|
|
|
# Compute the strobe interval
|
|
sleepTime = 0.5 / frequency
|
|
|
|
# Start the write data loop
|
|
while not hyperion.abort():
|
|
hyperion.setColor(0, 0, 0)
|
|
time.sleep(sleepTime)
|
|
hyperion.setColor(color[0], color[1], color[2])
|
|
time.sleep(sleepTime)
|