Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/v-i-s-h/rf24beacon
Arduino library for using nRF24L01+ as BLE beacons
https://github.com/v-i-s-h/rf24beacon
Last synced: about 1 month ago
JSON representation
Arduino library for using nRF24L01+ as BLE beacons
- Host: GitHub
- URL: https://github.com/v-i-s-h/rf24beacon
- Owner: v-i-s-h
- License: gpl-2.0
- Created: 2015-09-09T03:07:51.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-07-18T14:30:49.000Z (over 6 years ago)
- Last Synced: 2024-03-17T20:11:52.431Z (9 months ago)
- Language: C++
- Size: 14.6 KB
- Stars: 11
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
RF24Beacon
----------Arduino library for using nRF24L01 modules as BLE beacons.
## Pin Connections
Arduino | nRF24L01+
------- | --------
D13 | SCK
D12 | MISO
D11 | MOSI
D10 | CSN
D9 | CE
-- | IRQ
3V3 | Vcc
GND | GND
------- | --------You can intialize RF24Beacon using
``` c++
RF24Beacon beacon( 9,10 );
```
See examples folder for more information