Skip to content
This repository has been archived by the owner on Oct 16, 2022. It is now read-only.

xdarklight/arduino-nrf24l01

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 

Repository files navigation

An Arduino port of the tinkerer.eu library. It works with the Sparkfun nRF24L01+ modules.

http://www.arduino.cc/playground/InterfacingWithHardware/Nrf24L01

This is a fork of the original "Mirf" library by Aaron Shrimpton:
http://github.com/aaronds/arduino-nrf24l01/

This fork includes the following changes:
* Added support for the SPI85 library on ATtiny85 chips.
* Compatible with ATmega and ATtiny chips (tested with ATtiny85).
* Can connect to devices using the RF24 library by setting
  "Mirf.baseConfig = _BV(EN_CRC) | _BV(CRCO);" before calling
  "Mirf.config();".
* Reduced binary size.

Other information:
* This library supports changing less popular registers without
  having to "hack" the libraries code. An example for changing
  the RF_SETUP register:
  "Mirf.configRegister(RF_SETUP, _BV(RF_DR_LOW));"

Releases

No releases published

Packages

No packages published

Languages

  • C++ 48.5%
  • Processing 34.2%
  • C 14.3%
  • PHP 3.0%