Tweaks to get it to actually run
This commit is contained in:
parent
add9bda080
commit
4d132ab857
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user