From 4d132ab857e34363f1cdeb523d2b73f3f4d89e86 Mon Sep 17 00:00:00 2001 From: Glen Whitney Date: Sat, 28 Sep 2019 16:33:34 -0400 Subject: [PATCH] Tweaks to get it to actually run --- interactions.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/interactions.py b/interactions.py index f9cab9c..4331426 100644 --- a/interactions.py +++ b/interactions.py @@ -76,9 +76,9 @@ fullsat = 254 def set_light_hsv(e, color, hit_bridge): command = { - 'hue' : color[0]*lasthue, - 'bri' : color[2]*fullbright, - 'sat' : color[1]*fullsat + 'hue' : int(color[0]*lasthue), + 'bri' : int(color[2]*fullbright), + 'sat' : int(color[1]*fullsat) } if hit_bridge and b != None: b.set_light(edges[e].light_id, command) @@ -87,7 +87,7 @@ def set_light_hsv(e, color, hit_bridge): # === interaction parameters === -frame_rate = 24 +frame_rate = 2 inductance = 0.001