Skip to content

Commit

Permalink
Added Samd support for #50
Browse files Browse the repository at this point in the history
  • Loading branch information
dparson55 committed Aug 9, 2020
1 parent 47d0e5a commit e6836f5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name=NRFLite
version=2.4.2
version=2.4.3
author=Dave Parson <[email protected]>
maintainer=Dave Parson <[email protected]>
sentence=nRF24L01+ library requiring very little code along with YouTube videos showing all available features.
paragraph=Send dynamically-sized data packets, with or without dynamically-sized acknowledgement packets, with much less complication than other libraries. The library also supports controlling the radio with only 2 pins on ATtiny and ATmega microcontrollers!
category=Communication
url=https://github.com/dparson55/NRFLite
architectures=avr,esp8266,esp32
architectures=*
includes=NRFLite.h
4 changes: 4 additions & 0 deletions src/NRFLite.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
#include <Arduino.h>
#include <nRF24L01.h>

#ifndef _BV
#define _BV(bit) (1 << (bit))
#endif

class NRFLite {

public:
Expand Down

0 comments on commit e6836f5

Please sign in to comment.