Remove debug echo statements

This commit is contained in:
Junior 2025-03-06 12:49:39 -05:00
parent 3425d893a1
commit 71f5c95cfc
2 changed files with 0 additions and 2 deletions

View File

@ -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);

View File

@ -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);