From 1c9ae5f08382d60362cf0045d716791600be7955 Mon Sep 17 00:00:00 2001 From: Lucca Ketterer Date: Sun, 2 Aug 2020 00:51:55 +0200 Subject: [PATCH] the cake is a lie --- client/client.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/client.py b/client/client.py index fd67380..024108a 100755 --- a/client/client.py +++ b/client/client.py @@ -45,8 +45,9 @@ def visualizer(color): r,g,b = hex_to_rgb(color) r = int(r*(line/1000)) g = int(g*(line/1000)) - b = int(b*(line/1000)) + b = int(b*(line/1000)) hex_color = rgb_to_hex(r,g,b) + print(r,g,b) send(hex_color) cava.stdout.close() sed.stdout.close()