14 lines
		
	
	
		
			240 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			240 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
require '../header.php';
 | 
						|
 | 
						|
$command = 0x03;
 | 
						|
$target = $_SESSION['LEDTARGETID'];
 | 
						|
$unique = mt_rand(1, 2000000000);
 | 
						|
 | 
						|
$data = pack("LLLCL", PACKETFILTER[0], PACKETFILTER[1], $unique, $command, $target);
 | 
						|
 | 
						|
transmitMessage($data);
 | 
						|
 | 
						|
exit();
 |