NAME
Device::BusPirate::Chip::INA219
- deprecated
DESCRIPTION
This module has moved. it now lives at Device::Chip::INA219 because it now implements the Device::Chip interface.
To use it, replace
my $pirate = Device::BusPirate->new( @pirate_args );
my $chip = $pirate->mount_chip( "INA219" )->get;
with
my $chip = Device::Chip::INA219->new;
$chip->connect(
Device::Chip::Adapter::BusPirate->new( @pirate_args )
)->get;
Then proceed to use the $chip
device as before.