From 3d30820ff3d5a5a7a46457808930a32051ab0dac Mon Sep 17 00:00:00 2001 From: Kuba Orlik Date: Fri, 5 Jan 2024 15:52:49 +0100 Subject: [PATCH] Fix types --- light-loop.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/light-loop.js b/light-loop.js index 734743a..7cc5be1 100644 --- a/light-loop.js +++ b/light-loop.js @@ -42,12 +42,14 @@ async function send_color(light_data, color, max_brightness, debug) { } module.exports = async function light_loop(light_index, max_brightness, debug) { + light_index = parseInt(light_index) let last_time = 0; let last_color = [0, 0, 0]; while (true) { last_time = Date.now(); const from = 3 * light_index; - const to = 3 * (light_index + 1); + const to = 3 * (light_index + 1); + conso const current_color = latest_color.get().slice(from, to); let is_changed = false; for (i in last_color) {