Bluetooth trilateration and direction tracking using nrf52840

hello i am new to the nrf trilateration and direction tracking using nrf52840, i need some help with the sdk and programming and working examples .

eg : I have 4 nrf52840 with this how to track the direction using the trilatreration method with sdk availble in the nrf sdk?

1)If it is possible what are the steps for programming

2)how the the working will hapen any referencs (how to see the direction using mobile app or wow to do that ?)

Parents
  • Hi,

    The nRF52840 does not support direction finding (AoA/AoD) unlike for instance nRF52833. And unlike nRF54L series, it also does not support channel sounding. If you are starting a project now I would strongly consider nRF54L and channel sounding.

    If you have to use nRF52840 the only option is to monitor RSSI. But note that this is not a very good measure of distance, as various obstacles attenuate the signal, and you also have reflections/multipath. In a nutshell, if you measure a high RSSI, the transmitter is likely close. If you measure a low RSSI, the transmitter may be fare away, but not necessarily.

    I do not have any examples of trilateration, but for a scanner the RSSI is reported with the scan report. See for instance how this is done in the basic Zephyr central sample. (For reading the RSSI in a connection, you can refer to this post).

Reply
  • Hi,

    The nRF52840 does not support direction finding (AoA/AoD) unlike for instance nRF52833. And unlike nRF54L series, it also does not support channel sounding. If you are starting a project now I would strongly consider nRF54L and channel sounding.

    If you have to use nRF52840 the only option is to monitor RSSI. But note that this is not a very good measure of distance, as various obstacles attenuate the signal, and you also have reflections/multipath. In a nutshell, if you measure a high RSSI, the transmitter is likely close. If you measure a low RSSI, the transmitter may be fare away, but not necessarily.

    I do not have any examples of trilateration, but for a scanner the RSSI is reported with the scan report. See for instance how this is done in the basic Zephyr central sample. (For reading the RSSI in a connection, you can refer to this post).

Children
Related