cmd_unite.php 233 Bytes
<?php
	/* Commande Unité CH1 */
	if(array_key_exists('meas',$_POST)){
		$unit=$_POST["meas"];
		shell_exec('lxi scpi -a '.$adresse.' "meas:'.$unit.'?"');
	}else{
		$unit=shell_exec('lxi scpi -a '.$adresse.' "MEAS:VOLT:DC?"');
	}
?>