Skip to content

Commit a505441

Browse files
committed
Added BLE connection config to docs
1 parent 976e554 commit a505441

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

RNS/Utilities/rnsd.py

+17
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,23 @@ def main():
294294
# Serial port for the device
295295
port = /dev/ttyUSB0
296296
297+
# It is also possible to use BLE devices
298+
# instead of wired serial ports. The
299+
# target RNode must be paired with the
300+
# host device before connecting. BLE
301+
# devices can be connected by name,
302+
# BLE MAC address or by any available.
303+
304+
# Connect to specific device by name
305+
# port = ble://RNode 3B87
306+
307+
# Or by BLE MAC address
308+
# port = ble://F4:12:73:29:4E:89
309+
310+
# Or connect to the first available,
311+
# paired device
312+
# port = ble://
313+
297314
# Set frequency to 867.2 MHz
298315
frequency = 867200000
299316

docs/source/interfaces.rst

+17
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,23 @@ can be used, and offers full control over LoRa parameters.
358358
# Serial port for the device
359359
port = /dev/ttyUSB0
360360
361+
# It is also possible to use BLE devices
362+
# instead of wired serial ports. The
363+
# target RNode must be paired with the
364+
# host device before connecting. BLE
365+
# devices can be connected by name,
366+
# BLE MAC address or by any available.
367+
368+
# Connect to specific device by name
369+
# port = ble://RNode 3B87
370+
371+
# Or by BLE MAC address
372+
# port = ble://F4:12:73:29:4E:89
373+
374+
# Or connect to the first available,
375+
# paired device
376+
# port = ble://
377+
361378
# Set frequency to 867.2 MHz
362379
frequency = 867200000
363380

0 commit comments

Comments
 (0)