Written by 2bndy5 in 2020
This is a simple example of using the RF24 class on a Raspberry Pi for streaming multiple payloads.
Remember to install the Python wrapper, then navigate to the "RF24/examples_linux" folder.
To run this example, enter
python3 streaming_data.py
and follow the prompts.
- Note
- this example requires python v3.7 or newer because it measures transmission time with
time.monotonic_ns()
.
2A simple example of streaming data from 1 nRF24L01 transceiver to another.
4This example was written to be used on 2 devices acting as 'nodes'.
6See documentation at https://nRF24.github.io/RF24
10from RF24
import RF24, RF24_PA_LOW, RF24_DRIVER
21if RF24_DRIVER ==
"MRAA":
23elif RF24_DRIVER ==
"wiringPi":
27radio =
RF24(CE_PIN, CSN_PIN)
31 raise RuntimeError(
"radio hardware is not responding")
35address = [b
"1Node", b
"2Node"]
43 int(input(
"Which radio is this? Enter '0' or '1'. Defaults to '0' ")
or 0)
48radio.setPALevel(RF24_PA_LOW)
51radio.openWritingPipe(address[radio_number])
54radio.openReadingPipe(1, address[
not radio_number])
63radio.payloadSize = SIZE
72def make_buffer(buf_iter: int) -> bytes:
73 """Returns a dynamically created payloads
75 :param int buf_iter: The position of the payload in the data stream
81 buff = bytes([buf_iter + (65
if 0 <= buf_iter < 26
else 71)])
82 for j
in range(SIZE - 1):
83 char = bool(j >= (SIZE - 1) / 2 + abs((SIZE - 1) / 2 - buf_iter))
84 char |= bool(j < (SIZE - 1) / 2 - abs((SIZE - 1) / 2 - buf_iter))
85 buff += bytes([char + 48])
89def master(count: int = 1):
90 """Uses all 3 levels of the TX FIFO to send a stream of data
92 :param int count: how many times to transmit the stream of data.
97 start_timer = time.monotonic_ns()
98 for multiplier
in range(count):
100 while buf_iter < SIZE:
101 buffer = make_buffer(buf_iter)
103 if not radio.writeFast(buffer):
105 if failures > 99
and buf_iter < 7
and multiplier < 2:
107 print(
"Too many failures detected. Aborting at payload ", buffer[0])
113 end_timer = time.monotonic_ns()
115 f
"Time to transmit data = {(end_timer - start_timer) / 1000} us.",
116 f
"Detected {failures} failures.",
120def slave(timeout: int = 6):
121 """Listen for any payloads and print them out (suffixed with received
124 :param int timeout: The number of seconds to wait (with no transmission)
125 until exiting function.
127 radio.startListening()
129 start_timer = time.monotonic()
130 while (time.monotonic() - start_timer) < timeout:
131 if radio.available():
134 receive_payload = radio.read(radio.payloadSize)
135 print(
"Received:", receive_payload,
"-", count)
136 start_timer = time.monotonic()
138 print(
"Nothing received in", timeout,
"seconds. Leaving RX role")
140 radio.stopListening()
143def set_role() -> bool:
144 """Set the role using stdin stream. Role args can be specified using space
145 delimiters (e.g. 'R 10' calls `slave(10)` & 'T 3' calls `master(3)`)
148 - True when role is complete & app should continue running.
149 - False when app should exit
153 "*** Enter 'R' for receiver role.\n"
154 "*** Enter 'T' for transmitter role.\n"
155 "*** Enter 'Q' to quit example.\n"
159 user_input = user_input.split()
160 if user_input[0].upper().startswith(
"R"):
161 if len(user_input) > 1:
162 slave(int(user_input[1]))
166 if user_input[0].upper().startswith(
"T"):
167 if len(user_input) > 1:
168 master(int(user_input[1]))
172 if user_input[0].upper().startswith(
"Q"):
175 print(user_input[0],
"is an unrecognized input. Please try again.")
179if __name__ ==
"__main__":
183 except KeyboardInterrupt:
184 print(
" Keyboard Interrupt detected. Powering down radio.")
187 print(
" Run slave() on receiver\n Run master() on transmitter")
Driver class for nRF24L01(+) 2.4GHz Wireless Transceiver.