NAME

Device::BusPirate::Chip::MPL3115A2 - deprecated

DESCRIPTION

This module has moved. it now lives at Device::Chip::MPL3115A2 because it now implements the Device::Chip interface.

To use it, replace

my $pirate = Device::BusPirate->new( @pirate_args );
my $chip = $pirate->mount_chip( "MPL3115A2" )->get;

with

my $chip = Device::Chip::MPL3115A2->new;
$chip->connect(
   Device::Chip::Adapter::BusPirate->new( @pirate_args )
)->get;

Then proceed to use the $chip device as before.