Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nRF24/RF24Mesh
OSI Layer 7 Mesh Networking for RF24Network & nrf24L01+ & nrf52x devices
https://github.com/nRF24/RF24Mesh
arduino arduino-library c c-plus-plus hacktoberfest nrf24l01 rf24
Last synced: 2 months ago
JSON representation
OSI Layer 7 Mesh Networking for RF24Network & nrf24L01+ & nrf52x devices
- Host: GitHub
- URL: https://github.com/nRF24/RF24Mesh
- Owner: nRF24
- License: gpl-2.0
- Created: 2014-09-17T06:00:59.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-04-06T07:56:18.000Z (10 months ago)
- Last Synced: 2024-05-18T21:57:19.887Z (8 months ago)
- Topics: arduino, arduino-library, c, c-plus-plus, hacktoberfest, nrf24l01, rf24
- Language: C++
- Homepage: http://nrf24.github.io/RF24Mesh
- Size: 1.29 MB
- Stars: 419
- Watchers: 40
- Forks: 154
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- Awesome-arduino - RF24Mesh - Mesh Networking for RF24Network (Libraries)
README
[![Linux build](https://github.com/nRF24/RF24Mesh/actions/workflows/build_linux.yml/badge.svg)](https://github.com/nRF24/RF24Mesh/actions/workflows/build_linux.yml)
[![Arduino CLI build](https://github.com/nRF24/RF24Mesh/actions/workflows/build_arduino.yml/badge.svg)](https://github.com/nRF24/RF24Mesh/actions/workflows/build_arduino.yml)
[![PlatformIO build](https://github.com/nRF24/RF24Mesh/actions/workflows/build_platformIO.yml/badge.svg)](https://github.com/nRF24/RF24Mesh/actions/workflows/build_platformIO.yml)
[![Pico SDK build](https://github.com/nRF24/RF24Mesh/actions/workflows/build_rp2xxx.yml/badge.svg)](https://github.com/nRF24/RF24Mesh/actions/workflows/build_rp2xxx.yml)
[![Documentation Status](https://readthedocs.org/projects/rf24mesh/badge/?version=latest)](https://rf24mesh.readthedocs.io/en/latest/?badge=latest)# RF24Mesh
Mesh Networking for RF24Network
Introducing **RF24Network & RF24Mesh v2.0** with some *significant API changes*, adding the use of [C++ Templates](https://cplusplus.com/doc/oldtutorial/templates/)
in order to support a range of ESB enabled radios, most recently NRF52x radios.**Important Notes:**
- Any network layer that uses v2 needs to have RF24Network/RF24Mesh dependencies of v2 or newer. RF24 v1.x is an exception here.
- General usage should remain backward compatible, see the included examples of the related libraries for more info
- Any third party libs that extend the network/mesh layer may also need to be updated to incorporate the new templated class prototypes:
```cpp
template
class ESBNetwork;
template
class ESBMesh;
```
- Third party libs should also be able to use the backward-compatible typedef in their template:
- ESBGateway.h:
```cpp
template
class ESBGateway
```
and inform the compiler what types they intend to support:
- ESBGateway.cpp:
```cpp
template class ESBGateway;
```
- The auto installers do not perform a version check like package managers, so having the correct versions of the software is important.
- We *will* be maintaining the v1.x versions with bugfixes etc for those who cannot or do not wish to migrate to the newer template approach.https://nRF24.github.io/RF24Mesh