How do you retrieve the advertising payload for a Bluetooth LE emitter in linux?
Specifically, I\'ve configured arduino\'s and R-PI\'s using hcitool to act as iBeaco
At Radius Networks, we put together a set of scripts that parse the iBeacon identifiers out of BLE advertisement detected on Linux. You can find a description of this here.
If you simply want to see the raw advertisement bytes, you can start scanning on Linux with:
sudo hcitool lescan --duplicates &
And then see the results with:
sudo hcidump --raw
More details are in the answer linked above.