]> git.earman.xyz Git - sensor-watch.git/commitdiff
remove errant console.log
authorTom Hodson <thomas.c.hodson@gmail.com>
Tue, 22 Nov 2022 13:39:46 +0000 (14:39 +0100)
committerTom Hodson <thomas.c.hodson@gmail.com>
Tue, 22 Nov 2022 13:39:46 +0000 (14:39 +0100)
watch-library/simulator/watch/watch_led.c

index 249be056f5b480e85099725de04a88105dcd4b22..636dc74f26b188aa1c4a09983901954c642b642a 100644 (file)
@@ -38,7 +38,6 @@ void watch_set_led_color(uint8_t red, uint8_t green) {
         // this changes the color of the gradient to match the red+green combination
         let filter = document.getElementById("ledcolor");
         let color_matrix = filter.children[0].values.baseVal;
-        console.log($0, $1);
         color_matrix[1].value = $0  / 255; // red value
         color_matrix[6].value = $1 / 255; // green value
         document.getElementById('light').style.opacity = Math.min(255, $0 + $1) / 255;