blob: f6edc00b4450b7b21b770a024e67e728ec6771e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# RSSI Proximity Project
This project demonstrates how you can use a single Bluefruit nRF52 device
running in Central mode to listen for a specific signature in the advertising
packets of nearby Bluefruit nRF52 devices running in peripheral mode.
The Central mode device will sort those devices with the matching signature by
proximity based on their RSSI (relative signal strength) value.
Most of the Central mode advertising API is used in this demo, making it an
excellent place to start if you want to create your own custom Central based
project(s).
## Project Files
This project consists of two parts:
- `rssi_proximity_central`: This project should be run on one Bluefruit nRF52
board and will configure the board as a Central device, actively scanning
for any peripheral devices in listening range.
- `rssi_proximity_peripheral`: This project should be run on one or more
Bluefruit nRF52 boards and will configure the boards as peripheral devices,
sending out a specifically formatted advertising packet at a regular
interval.
|