From dc2c1983c06bc8747aaec5d5ce1df08361e69384 Mon Sep 17 00:00:00 2001 From: Kuba Orlik Date: Sat, 30 Dec 2023 14:05:56 +0100 Subject: [PATCH] More debug output --- light-loop.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/light-loop.js b/light-loop.js index 44d6b6c..b33ca6a 100644 --- a/light-loop.js +++ b/light-loop.js @@ -7,16 +7,19 @@ const { lights } = require("./config.js"); async function send_color(light_data, color, max_brightness, debug) { const brightness = (color[0] + color[1] + color[2]) / 3 / 255; let body = { entity_id: `light.${light_data.id}`, transition: 0.18 }; + if (debug) { + console.log("sending", body); + } if (light_data.type == "rgb") { body.rgb_color = color; body.brightness = Math.floor( - Math.max(...latest_color.get()) * max_brightness, + Math.max(...latest_color.get()) * max_brightness ); } else { // body.brightness = Math.max(1, Math.round(255 * brightness)); // 0 seems to turn it off and make it slower to react body.brightness = Math.floor( - Math.max(...latest_color.get()) * max_brightness, + Math.max(...latest_color.get()) * max_brightness ); }