2010-06-23 15:54:56 +00:00
|
|
|
<?php
|
2010-06-23 14:35:34 +00:00
|
|
|
$id = $device['device_id'];
|
|
|
|
$hostname = $device['hostname'];
|
|
|
|
$community = $device['community'];
|
|
|
|
$snmpver = $device['snmpver'];
|
|
|
|
$port = $device['port'];
|
|
|
|
|
|
|
|
echo("Humidity : ");
|
|
|
|
|
2010-07-17 22:53:53 +00:00
|
|
|
include_dir("includes/discovery/humidity");
|
2010-06-23 14:35:34 +00:00
|
|
|
|
2010-07-29 18:25:11 +00:00
|
|
|
if($debug) { print_r($valid['humidity']); }
|
2010-06-23 14:35:34 +00:00
|
|
|
|
2010-07-29 18:25:11 +00:00
|
|
|
check_valid_sensors($device, 'humidity', $valid_sensor);
|
2010-06-23 14:35:34 +00:00
|
|
|
|
2010-07-29 18:25:11 +00:00
|
|
|
echo("\n");
|
2010-06-23 14:35:34 +00:00
|
|
|
|
|
|
|
?>
|