You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							33 lines
						
					
					
						
							664 B
						
					
					
				
			
		
		
	
	
							33 lines
						
					
					
						
							664 B
						
					
					
				| <?php
 | |
| 
 | |
| require_once dirname(__FILE__) . '/../../Phpmodbus/ModbusMasterUdp.php';
 | |
| 
 | |
| // Received bytes interpreting Mixed values
 | |
| $data = Array (
 | |
|     "0" => 125, // 32098 (DINT)
 | |
|     "1" => 98,
 | |
|     "2" => 0,
 | |
|     "3" => 0,
 | |
|     "4" => 0,  // 0 (DINT)
 | |
|     "5" => 0,
 | |
|     "6" => 0,
 | |
|     "7" => 0,
 | |
|     "8" => 0,  // 0 (DINT)
 | |
|     "9" => 0, 
 | |
|     "10" => 0,
 | |
|     "11" => 0,
 | |
|     "12" => 255, // -1 (DINT)
 | |
|     "13" => 255,
 | |
|     "14" => 255,
 | |
|     "15" => 255,
 | |
|     "16" => 158, // -25000 (INT)
 | |
|     "17" => 88,
 | |
|     "18" => 97, // 25000 (INT)
 | |
|     "19" => 168    
 | |
| );
 | |
| 
 | |
| // Print mixed values
 | |
| foreach($data as $d)
 | |
|   echo ord(IecType::iecBYTE($d)) . "<br>";
 | |
|  
 | |
| ?>
 |