Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
You are viewing an older revision! See the latest version
Homepage
URI-Beacons are handy when there is a need to advertise a small amount of information (usually a URL) to any nearby device. They’re really easy to set up: the code is fully available on the mbed website, so all you’ll need to do is tell the beacon what to broadcast.
Technical details are better presented here, which happens to be the mbed-classic equivalent of this example. Please also refer to Google's URIBeacon project.
What You’ll Need¶
To get this going, you’ll need:
- To see URIBeacons get the *Physical Web* app installed on your phone:
- One of the BLE platforms listed in the README.md of this repository, for example a Nordic DK board.
Build Instructions¶
After cloning the parent repository, switch to the subfolder BLE_URIBeacon, and execute the following:
Quote:
mbed compile -t <toolchain> -m <target>
Assuming that you're building for the nRF51 DK platform, available targets is `NRF51_DK`.
The other targets you can use are described in the main README.md for this repository.
The resulting binaries would be under `.build/<target_name>/<toolchain>/`.
Under that folder, the file called `ble-uribeacon.hex` is the one which can be flashed to the target using mbed's DAP over USB; the parent README or the documentation for your yotta target will explain how to choose between the available binaries and hex files.
Checking for Success¶
- Build the application and install it on your board as explained in the building instructions.
- Open the *Physical Web* application on your phone. It will start to search for nearby beacons.
figure 1 Start of the *Physical Web* application version 0.1.856 on Android
- When the beacon starts up, the Configuration Service runs for 60 seconds. During this time it is possible to change the URL advertised by the beacon. It is also important to note that during these 60 seconds, your device will not advertise any URL.
figure 2 How to open the beacon configuration view using the *Physical Web* application version 0.1.856 on Android
- Edit the URL advertised by your beacon.
figure 3 How to edit the URL advertised by your beacon using the *Physical Web* application version 0.1.856 on Android
- Save the URL which will be advertised by your beacon.
figure 4 How to save your beacon configuration and start advertising URL using the *Physical Web* application version 0.1.856 on Android.
- Find your device; it should advertise the URL you have set.
figure 5 Display of URL advertised by your beacon using the *Physical Web* application version 0.1.856 on Android.
Please note that the URIBeacon spec requires the URIBeacon app to remain in config mode for the first 60 seconds before switching to being a beacon. So if you're using a physical-web app, you'll only see the beacon after this period; if you're using one of the generic apps for BLE scanning, you should see a configurable beacon being advertised for the first 60 seconds.
You'll find links on Google's project page to client apps to test URIBeacon. Here's a link that should get you an Android App; please browse to `uribeacon-sample-release.apk`. But you should begin with the links to android apps mentioned above.