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