diff --git a/effects/strobe-blue.json b/effects/strobe-blue.json index 9a40b4d1..f6b643e7 100644 --- a/effects/strobe-blue.json +++ b/effects/strobe-blue.json @@ -4,6 +4,6 @@ "args" : { "color" : [ 0, 0, 255 ], - "frequency" : 10.0 + "frequency" : 5.0 } } diff --git a/effects/strobe-raspbmc.json b/effects/strobe-raspbmc.json index 2f69e110..a5cda020 100644 --- a/effects/strobe-raspbmc.json +++ b/effects/strobe-raspbmc.json @@ -4,6 +4,6 @@ "args" : { "color" : [ 188, 17, 66 ], - "frequency" : 10.0 + "frequency" : 5.0 } } diff --git a/effects/strobe-white.json b/effects/strobe-white.json index 1552013b..95b92a7f 100644 --- a/effects/strobe-white.json +++ b/effects/strobe-white.json @@ -4,6 +4,6 @@ "args" : { "color" : [ 255, 255, 255 ], - "frequency" : 10.0 + "frequency" : 5.0 } } diff --git a/effects/strobe.py b/effects/strobe.py index 39a3a558..fa5a1d7f 100644 --- a/effects/strobe.py +++ b/effects/strobe.py @@ -8,7 +8,7 @@ frequency = float(hyperion.args.get('frequency', 10.0)) frequency = min(100.0, frequency) # Compute the strobe interval -sleepTime = 1.0 / frequency +sleepTime = 0.5 / frequency # Start the write data loop while not hyperion.abort():