I am using my raspberry pi as ibeacon scanner ,and with the pipes i output the values in .php file and than i send it to my backend.But the problem is that this script shows onlyUUID,minor,major and power,but i would like to see RSSI outputs.Anyone knows some good reference?
Asked
Active
Viewed 804 times
1
-
Presumably if that information is collected by the adapter and made available through the bluetooth stack, you can modify the script to output it as well. – Chris Stratton May 27 '14 at 13:57
1 Answers
0
RSSI is included in the raw output of hcidump
so you can capture its value and output it along with the other values. Though this wasn't included originally in our iBeacon scan script, we recently received a suggestion to add it so I've updated this answer with an outline of how to include RSSI in the output of the script.