Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/floe/BTLE
Arduino library for basic Bluetooth Low Energy with the nRF24L01+
https://github.com/floe/BTLE
Last synced: 3 months ago
JSON representation
Arduino library for basic Bluetooth Low Energy with the nRF24L01+
- Host: GitHub
- URL: https://github.com/floe/BTLE
- Owner: floe
- License: gpl-3.0
- Created: 2013-10-21T16:01:30.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2018-06-22T07:52:42.000Z (over 6 years ago)
- Last Synced: 2024-06-30T04:14:00.960Z (5 months ago)
- Language: C++
- Size: 43.9 KB
- Stars: 259
- Watchers: 28
- Forks: 74
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- Awesome-arduino - BTLE - Library for basic Bluetooth Low Energy with the nRF24L01+ (Libraries)
- awesome-arduino - BTLE - Library for basic Bluetooth Low Energy with the nRF24L01+ (Libraries)
README
BTLE
====Arduino library for basic Bluetooth Low Energy support using the nRF24L01+
(basic support = sending & receiving on the advertising broadcast channel)You will also need to install the RF24 library installable either from the Arduino IDE or https://github.com/TMRh20/RF24 .
Note: the BTLE class and the examples are licensed under GPLv3. However, the
helper functions in btle.inc are (C) 2012 by Dmitry Grinberg under a separate
license (see file for details).FAQ
===The nRF24L01+ can only send and receive up to 32 bytes. For advertising messages, this means 32 - 6 (MAC) - 2 (header) - 3 (CRC) = 21 bytes of payload can be sent and received at most. Consequently, a full iBeacon message won't fit in there and will never be received. Also, if you're sending advertisements from your phone, the device name alone will take up a significant chunk of that budget.