16 #include <RF24Network.h> 20 #define NRF_MESSAGE_SIZE 120 65 bool send_impl(JsonObject json,
const uint8_t destination)
override;
91 const uint8_t address = 0,
92 const uint8_t data_rate = 1,
93 const uint8_t power_level = 0,
94 const uint8_t retry_count = 3,
95 const uint16_t retry_timeout = 200,
96 const uint8_t multicast_level = 1
uint8_t retry_count
Number of transmission retries allowed.
Definition: nRF.h:46
void broadcast_impl(JsonObject json) override
Broadcast data to all that can receive.
Definition: nRF.cpp:173
Manager to contain Loom modules and provide users with a simpler API.
Definition: Manager.h:130
uint8_t get_address() const override
Get the address of this device.
Definition: nRF.h:123
RF24Network * network
Network layer manager for radio.
Definition: nRF.h:40
uint16_t retry_timeout
Delay between transmission retries (in milliseconds)
Definition: nRF.h:47
void print_config() const override
Display the configuration settings of the module.
Definition: nRF.cpp:124
RF24 radio
Underlying nRF24L01(+) radio object.
Definition: nRF.h:39
uint16_t max_message_len
The maximum message length.
Definition: CommPlat.h:35
bool receive_blocking_impl(JsonObject json, uint max_wait_time) override
Receive, but block until packet received, or timeout reached.
Definition: nRF.cpp:136
bool send_impl(JsonObject json, const uint8_t destination) override
Send json to a specific address.
Definition: nRF.cpp:158
Loom_nRF(LoomManager *manager, const uint16_t max_message_len=120, const uint8_t address=0, const uint8_t data_rate=1, const uint8_t power_level=0, const uint8_t retry_count=3, const uint16_t retry_timeout=200, const uint8_t multicast_level=1)
nRF module constructor
Definition: nRF.cpp:14
uint8_t address
Device Address (should this be part of LoomCommPlat? – maybe not as each platform handles addresses ...
Definition: nRF.h:42
uint8_t data_rate
Data rate.
Definition: nRF.h:44
~Loom_nRF()
Destructor.
Definition: nRF.cpp:107
uint8_t power_level
Power level to send at.
Definition: nRF.h:45
uint8_t multicast_level
Which level(s) of the network to broadcast to.
Definition: nRF.h:49
void add_config(JsonObject json) override
Add configuration information to JsonObject.
Definition: nRF.cpp:114
uint8_t get_multicast_level() const
Get multicast(broadcast) level.
Definition: nRF.h:129
void set_address(const uint8_t addr) override
Set the address of this device.
Definition: nRF.cpp:191
Nordic Radio communication platform module.
Definition: nRF.h:34
Abstract base of communication platform modules.
Definition: CommPlat.h:30
void set_multicast_level(const uint8_t level)
Set multicast(broadcast) level.
Definition: nRF.h:141