Tweaks to get it to actually run

This commit is contained in:
Glen Whitney 2019-09-28 16:33:34 -04:00
parent add9bda080
commit 4d132ab857
1 changed files with 4 additions and 4 deletions

View File

@ -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