From 71f5c95cfc7f5bc7a408baa5c427ed551c641f5d Mon Sep 17 00:00:00 2001 From: Junior Date: Thu, 6 Mar 2025 12:49:39 -0500 Subject: [PATCH] Remove debug echo statements --- ajax/ajax_lightsoff.php | 1 - setcolor.php | 1 - 2 files changed, 2 deletions(-) diff --git a/ajax/ajax_lightsoff.php b/ajax/ajax_lightsoff.php index dec8396..8e97167 100644 --- a/ajax/ajax_lightsoff.php +++ b/ajax/ajax_lightsoff.php @@ -6,7 +6,6 @@ $command = 0x00; $target = intval($_SESSION['LEDTARGETID']); $unique = mt_rand(1, 2000000000); -echo "Target: ", $target; $data = pack("LLLCL", PACKETFILTER[0], PACKETFILTER[1], $unique, $command, $target); transmitMessage($data); diff --git a/setcolor.php b/setcolor.php index bf69af5..672905d 100644 --- a/setcolor.php +++ b/setcolor.php @@ -13,7 +13,6 @@ $red = hexdec(substr($hex, 0, 2)); $green = hexdec(substr($hex, 2, 2)); $blue = hexdec(substr($hex, 4, 2)); -var_dump($targets); foreach ( $targets as $target ) { $target = intval($target); $unique = mt_rand(1, 2000000000);