Comparing RSSI Between Thinly Enclosed and Exposed Devices

Abstract

In this paper, we explore the idea of private automated contact tracing through bluetooth devices. This is done through a controlled experiment where Received Signal Strength Indicator (RSSI) values are measured from different distances in both an exposed setting as well as a thinly enclosed setting [3]. The behavior and patterns of the RSSI values are then analysed through different metrics including analysing RSSI values at a single distance, mean RSSI values over different distances, and standard deviation of RSSI values over different distances. From this, it is discovered that enclosings that obstruct the signal strength do not impact the signal strength itself but rather the standard deviation of the signal strength. To generalise these results, a polynomial regression was run to compare the patterns of RSSI values between both the enclosed and exposed device. The patterns in the regressions between both environments indicated no major variance of RSSI in the different settings. To further extrapolate RSSI through an equation, we analyse the Log Normal Shadowing Model as well as limitations of this model. To overcome these limitations, we present a completely new and resilient proximity detection algorithm that introduces a unique device constant to account for variations in RSSI values with different devices and better predict RSSI values at different distances.

I. INTRODUCTION

A. Project Description

This project addresses one primary aspect of the Private Automated Contact Tracing (PACT) project: how bluetooth signals will differ between thin closings versus no enclosings [6]. When using bluetooth devices, such as smartphones, the majority of the time they will be inside the user’s pocket or similar location. For that reason, it is important to compare when the device is covered by a thin enclosing such as cloth and when it is completely out in the open. This project attempts to find variations or patterns between the receiving signal strength indicator (RSSI) when the device is in a thin enclosing versus when the device is not enclosed.

B. Background Information

In this experiment, we utilise the bluetooth features from two Raspberry Pis. One Raspberry Pi acts as the advertiser which sends out a signal. These signals are then picked up by the other Raspberry Pi which acts as the scanner. The bluetooth signal strength is measured by its receiving signal strength indicator or RSSI. A stronger RSSI will have values closer to 0 dBm while weaker RSSI will have values closer to -100 dBm which marks the weakest an RSSI can become [8]. In this experiment, we make the following assumptions:

  • The state of the environment–actual factors that are inherent to the environment (i.e. outside versus inside) will stay constant in a 10×10 meter square area as long as the two devices are not moved outside of it. In essence, moving the two devices within the region will not impact the results.
  • Interactions that require bluetooth contact tracing will primarily occur indoors, therefore, this project was conducted indoors.
  • The recorded RSSI will stay constant if a device is rebooted.
  • The RSSI values recorded from different materials will scale the same depending on the attenuation coefficient–a coefficient that characterises how easily a material can be penetrated by a beam of energy or matter. Therefore, the material used during the obstruction will not matter for the final data analysis.

II. HYPOTHESIS

A. Significance to Bluetooth Contact Tracing

  • This project is important to studying bluetooth signals with different obstructions as this project reveals the relationships between the RSSI values of thinly enclosed and exposed devices.
  • This project presents an alternative form of the Log Normal Shadowing Model which converts RSSI values into distances.
  • This project allows us to find patterns or relationships between RSSI values in different enclosures.

B. Hypothesis and Investigation

This experiment was designed to check whether or not a relationship exists between RSSI values between a device that is thinly enclosed versus a device that is completely exposed. The hypothesis taken is that there would be weaker RSSI values from the device that was thinly enclosed because obstructions would cause interference.

In order to test out this hypothesis, the most intensive part of the investigation is the data analysis. With the data analysis, several statistical measures will need to be taken in order to cover all relationships between the RSSI values of thinly enclosed and exposed devices.

III. EXPERIMENTS AND DATA COLLECTIONS

A. Overview

In this experiment, there were two main iterations of work: the first iteration tested the RSSI values in an exposed state and the second iteration tested the RSSI values in an thinly enclosed state. This process was repeated at the distances of 0, 2, 4, 6, 8, and 10 meters.

B. Plan and Execution

Prior to the actual experimentation, one Raspberry Pi was set up with a scanner configuration and the other Raspberry Pi setup with an advertiser configuration. The configurations are as follows in Table I:

TABLE I

SCANNER CONFIGURATION

Timeout 100 Seconds
Scanning Interval 1 Second
Filters None

Table 2 lists the details of the advertiser:

TABLE II

ADVERTISER CONFIGURATION

Timeout None
Major Value 1
Minor Value 1
TX Power 1
Advertising Interval 20 ms

In order to conduct this experiment, one Raspberry Pi was set as the advertiser and the other as the scanner. The scanner would then run the core program to record RSSI values and append them into a CSV file. This was done for each distance starting from 0 meters and ranging to 10 meters with a 2 meter interval. The scanners would record for a period of 100 seconds. Then, his whole process would then be repeated except this time with a thin enclosure.

The primary limitations of this project regarded control over the environment variables and their effect on this experiment. For that reason, the environment was kept constant so that discrepancies between a changing environment would cancel out. The environment staying constant allows this because it ensures all external factors outside, such as different conditions (i.e. outside versus inside), impact all the trials equally.

C. Data

The data that was collected and analysed consisted of the first 50 scans of the advertiser at 0,2,4,6,8 and 10 meters with one trial being thinly enclosed and the one trial being exposed. This was done so we could properly measure the relationship between the advertiser and scanner not just at one distance but several. This proved helpful when comparing the average RSSI between both states.

D. Examples

The raw data that was collected was in the form of RSSI value versus scan number at distances of 0,2,4,6,8, and 10 meters in a thinly enclosed state and exposed state. Sample data for the RSSI values for 0 meters for a thinly enclosed and exposed Raspberry Pi can be found in Tables III and IV:

TABLE III

SCAN NUMBER VERSUS RSSI VALUE – 0 METERS THINLY ENCLOSED

Scan Number RSSI Value (dBm)
1 -26
2 -26
3 -32
4 -26

TABLE IV

SCAN NUMBER VERSUS RSSI VALUE – 0 METERS EXPOSED

Scan Number RSSI Value (dBm)
1 -36
2 -31
3 -31
4 -30

Graphing the RSSI Values for 0 meters we get the following graph:

Fig. 1. First 50 scans RSSI Values of a Thinly Exposed (Boxed) and Exposed (No Box) Raspberry Pi at 0 meters

Graphs and data for the other distances can be found at the data and code repository.

IV. ANALYSIS AND ALGORITHMS

A. Statistical Analysis

  1. Mean RSSI Values: The mean RSSI values of each distance for a thinly enclosed and exposed device were graphed in order to note substantial pattern differences between the two states of the device.

Fig. 2. Mean RSSI Values of a thinly enclosed and exposed device from 0 – 10 meters based on collected data

In graphing the mean RSSI values for each distance, we notice that after the 8 meter mark both the thinly enclosed and exposed devices are not found– the signal beyond the 8 meter mark is not detected. Additionally, no significant differences in RSSI values or patterns between the thinly enclosed and exposed devices were found because the shape of the graph stayed, relatively speaking, the same. Therefore when comparing the RSSI values at face, there is no significant change between the states.

  1. Standard Deviation of RSSI Values: The standard deviation of the RSSI values were graphed in order to study the behavior of the RSSI values at each distance and compare a thinly enclosed device behavior with an exposed device behavior.

Fig. 3. Standard Deviation of RSSI Values of a thinly enclosed and exposed device from 0 – 10 meters based on collected data

The graph depicts that the standard deviation of a thinly enclosed Raspberry Pi is significantly higher than the standard deviation for an exposed device. This is likely caused by the blockage from the enclosing which could cause signals to only sometimes go through or become scattered. However, the exact reason is unknown. There are also stark dips and peaks within the Boxed Raspberry Pi’s standard deviation–while it is likely this is because the RSSI fluctuates when the signal interacts with the box. However, once again, the exact reason is unknown.

B. Algorithms

  1. Polynomial Regression for Mean RSSI: In order to generalize the data into a form that could be used for up to 10 meters–data further than 10 meters was not collected and therefore an accurate generalization is not guaranteed for beyond 10 meters– a polynomial regression was used to form a model that outputted an RSSI based on the distance. The mean RSSI value data was used in order to form this model. Figure 4 depicts the regression:

Fig. 4. Polynomial Regression of mean RSSI Values of a thinly enclosed and exposed device from 0 – 10 meters

As shown from the regression, both the thinly enclosed and exposed devices had very similar regressions, suggesting that the actual variance in RSSI value between both states was not large and therefore the RSSI strength hardly differed from the thinly enclosed and exposed devices.

  1. Modified Log Normal Shadowing Model: The log normal shadowing model is used to get estimates of distances based on RSSI values. The regular Log Normal Shadowing Model can be represented as follows [5]:

(1)

The parts of the Log Normal Shadowing Model are as follows [4]:

  • D: Distance
  • R; RSSI Value
  • A0: Average RSSI value at a distance of 1m from the advertiser
  • n: This is the signal propagation exponent. It is a constant that differs from environment to environment. It ranges from 0 to 5.
  • c: This is the environment constant which is used to add weight to reduce error. It differs from environment to environment.

With RSSI, devices differ from one another so the bluetooth signal from one device will not equate to the same signal for another device. This in turn caused different calculated distances from the same distance using the Log Normal Shadowing Model. Therefore, the Log Normal Shadowing Model does not apply to all devices.

To make the Log Normal Shadowing Model applicable to all devices, a parameter, the device constant, is added. The device constant will differ from device to device and should be tuned manually. The device constant can be tuned by obtaining the distance at a given RSSI with your device. Then you will need to divide this distance by the predicted distance from the original Log Normal Shadowing Model to obtain DC, the device constant. The modified Log Normal Shadowing Model can be represented as follows:

(2)

The goal of developing this algorithm was to get an RSSI versus distance relationship that would be applicable to the Raspberry Pis that were used in this experiment. Through repetitive experimentation, applying the following parameters in Table V, Figure 5 is representative of this experiment:

TABLE V

PARAMETERS FOR MODIFIED LOG NORMAL SHADOWING MODEL

Parameter Value
A0 -50
n 5
c 1
DC 0.5

Fig. 5. Modified Log Normal Shadowing Graph

V. CONCLUSIONS

A. Hypothesis Evaluation

Originally, it was hypothesised that the RSSI strengths would decrease in a thinly enclosed device because of the obstructions. However, the experiments showed this to be false. From the statistical analysis of the experiments, it was concluded that while the standard deviation between the RSSI values of the thinly enclosed and exposed devices differed greatly, the RSSI itself did not. This was concluded through looking at the standard deviation graphs for the RSSI at different distances and comparing them to the mean RSSI graphs.

B. Noteworthy Conclusions

From this experiment, there were two noteworthy conclusions: the relationship between the thin enclosing and its effect on the RSSI and the Modified Log Normal Shadowing Model.

  1. Thin Enclosure’s effect on RSSI: Based on intuition, one might think that it would be the actual RSSI strength that varies between a thinly enclosed and exposed device. However, from the experiments conducted here, it is evident that when a device is enclosed, the RSSI behaves in a way that causes it to rapidly fluctuate as shown by Figure 3.
  2. Modified Log Normal Shadowing Model: Prior to this experiment, the regular Log Normal Shadowing Model was utilised. However, the regular Log Normal Shadowing Model provided generalized estimates for all devices and so failed to accurately represent a particular device. In this accord, the Modified Log Normal Shadowing Model serves as a breakthrough in signal processing as it accommodates for all devices through a specially chosen device constant for that certain device.

C. General Lessons Learned

Bluetooth contact tracing’s success is subject to so many different factors. In this experiment alone, the environment and devices were kept constant yet there were many variations within the results of the data. Culminating all the factors such as environment, privacy, obstructions and more make bluetooth contact tracing on the less feasible side without heavy development on applications that are specially designed for contact tracing.

D. Code and Data

All code and data for this project can be found here: https://github.com/SamratSahoo/RPiContact-Tracer

VI. NEXT STEPS

From this experiment there are two primary paths to take in order to expand this project.

  1. Cause of High Standard Deviation: While we understand that there is a higher standard deviation within the RSSI values of thinly enclosed devices, the reason for it is still unknown. Further investigations into this field would investigate the reason why thinly enclosed devices have higher standard deviations in their RSSI strength.
  2. Investigating the Modified LNSM: The Modified Log Normal Shadowing Model is a breakthrough in modern signal processing. However, there still needs to be further investigations in order to verify the viability of using the Modified Log Normal Shadowing Model in practice and how efficiently it can be brought to industry standards. Additionally, further investigations may help refine the model or lead to the emergence of a completely new model that outperforms the Log Normal Shadowing Model or the Modified Log Normal Shadowing Model.

REFERENCES

  1. Afaneh, Mohammad. “The Ultimate Bluetooth Low Energy (BLE) Guide.” Novel Bits. Novel Bits, May 19, 2020. http://www.novelbits.io/basics-bluetooth-low-energy/.
  2. “Bluetooth Basics.” Spark Fun. Accessed January 17, 2021. https://learn.sparkfun.com/tutorials/bluetooth-basics/all.
  3. “The Ever-Growing Importance of Contact Tracing.” UT Health Austin. Accessed January 17, 2021. https://uthealthaustin.org/blog/theimportance-of-contact-tracing.
  4. Ewenchou. “Ewenchou/Bluetooth-Proximity.” GitHub. GitHub. Accessed January 17, 2021. https://github.com/ewenchou/bluetoothproximity.
  5. Mathuranathan, and Viswanathan. “Log Distance Path Loss or Log Normal Shadowing Model.” GaussianWaves, July 25, 2020. http://www.gaussianwaves.com/2013/09/log-distance-path-loss-or-lognormal-shadowing-model/.
  6. “Private Automated Contact Tracing.” PACT. MIT. Accessed January 17, 2021. https://pact.mit.edu/.
  7. Townsend, Kevin. “Introduction to Bluetooth Low Energy.” Adafruit Learning System. Accessed January 17, 2021. https://learn.adafruit.com/introduction-to-bluetooth-low-energy.
  8. “Understanding Bluetooth Range.” Bluetooth R Technology Website. Accessed January 17, 2021. http://www.bluetooth.com/learn-aboutbluetooth/bluetooth-technology/range/.

About the author

Samrat Sahoo is a High School Senior from Rick Reedy High School in Frisco Texas. He is an avid researcher, software developer, entrepreneur, and visionary. His primary areas of interest include but are not limited to machine learning, microcontrollers, and robotics.

Leave a Comment

Your email address will not be published. Required fields are marked *