Loom
nRF.h
Go to the documentation of this file.
1 
11 
12 #pragma once
13 
14 #include "CommPlat.h"
15 
16 #include <RF24Network.h>
17 #include <RF24.h>
18 
19 
20 #define NRF_MESSAGE_SIZE 120
21 
22 
34 class Loom_nRF : public LoomCommPlat
35 {
36 
37 protected:
38 
39  RF24 radio;
40  RF24Network* network;
41 
42  uint8_t address;
43 
44  uint8_t data_rate;
45  uint8_t power_level;
46  uint8_t retry_count;
47  uint16_t retry_timeout;
48 
49  uint8_t multicast_level;
50 
51 //=============================================================================
53  //======================================================================
54 
59  bool receive_blocking_impl(JsonObject json, uint max_wait_time) override;
60 
65  bool send_impl(JsonObject json, const uint8_t destination) override;
66 
71  void broadcast_impl(JsonObject json) override;
72 
73 public:
74 
75 //=============================================================================
77  //======================================================================
78 
88  Loom_nRF(
89  LoomManager* manager,
90  const uint16_t max_message_len = 120,
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
97  );
98 
102  Loom_nRF(LoomManager* manager, JsonArrayConst p);
103 
105  ~Loom_nRF();
106 
107 //=============================================================================
109  //======================================================================
110 
111  void add_config(JsonObject json) override;
112 
113 //=============================================================================
115  //======================================================================
116 
117  void print_config() const override;
118 
119 //=============================================================================
121  //======================================================================
122 
123  uint8_t get_address() const override { return address; }
124 
129  uint8_t get_multicast_level() const { return multicast_level; }
130 
131 //=============================================================================
133  //======================================================================
134 
135  void set_address(const uint8_t addr) override;
136 
141  void set_multicast_level(const uint8_t level) { multicast_level = level; }
142 
143 private:
144 
145 };
146 
147 
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