The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Sys::Ibam - Perl extension for the intellegent battery monitor

SYNOPSIS

  use Sys::Ibam;
  $i = Sys::Ibam->new();
  $i->update();
  if( $i->valid() ) {
    $i->update_statistics();
  } else {
    $i->ignore_statistics();
  }
  $i->save();

DESCRIPTION

Sys::Ibam is a Perl extension for the ingellegent battery monitor by Sebastian Ritterbusch <Sebastian@Ritterbusch.de>. It uses statistical and adaptive linear methods to provide accurate estimations of minutes of battery left or of the time needed until full recharge. It requires /proc/apm.

This module follows the internal ibam API quite closely. Only the import() method has been renamed to import_old_data(). See ibam.inl for details.

SEE ALSO

ibam(1)

AUTHOR

Florian Ragwitz <flora@cpan.org>

COPYRIGHT AND LICENSE

Copyright (C) 2004 by Florian Ragwitz

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.4 or, at your option, any later version of Perl 5 you may have available.