NAME

Device::BusPirate::Chip::nRF24L01P - deprecated

DESCRIPTION

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

To use it, replace

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

with

my $nrf = Device::Chip::nRF24L01P->new;
$nrf->mount(
   Device::Chip::Adapter::BusPirate->new( @pirate_args )
)->get;

Then proceed to use the $nrf device as before.

Alternatively, other adapter types are available that offer a more flexible usage.