Prepare to merge Glen's changes

This commit is contained in:
Aaron Fenyes 2019-09-29 00:05:27 +02:00
parent c1b2b45dbd
commit 4c4d824f6f
1 changed files with 4 additions and 4 deletions

View File

@ -79,9 +79,9 @@ new_updates = 0
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:
if b != None:
@ -93,7 +93,7 @@ def set_light_hsv(e, color, hit_bridge):
# === interaction parameters ===
frame_rate = 24
frame_rate = 2
ema_weight = 2/(frame_rate+1)
inductance = 0.001