mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
17 lines
283 B
PHP
Executable File
17 lines
283 B
PHP
Executable File
<?php
|
|
|
|
echo("Battery Charge: ");
|
|
|
|
// Include all discovery modules
|
|
|
|
$include_dir = "includes/discovery/charge";
|
|
include("includes/include-dir.inc.php");
|
|
|
|
if ($debug) { print_r($valid['sensor']['charge']); }
|
|
|
|
check_valid_sensors($device, 'charge', $valid['sensor']);
|
|
|
|
echo("\n");
|
|
|
|
?>
|