Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kshoji/microbit-beacon-finder
The micro:bit finds various of BLE Beacons, and display the ID to LEDs.
https://github.com/kshoji/microbit-beacon-finder
altbeacon beacon eddystone ibeacon microbit
Last synced: about 2 months ago
JSON representation
The micro:bit finds various of BLE Beacons, and display the ID to LEDs.
- Host: GitHub
- URL: https://github.com/kshoji/microbit-beacon-finder
- Owner: kshoji
- License: apache-2.0
- Created: 2017-10-23T05:00:04.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-02-12T19:17:35.000Z (almost 5 years ago)
- Last Synced: 2024-04-18T18:55:02.816Z (9 months ago)
- Topics: altbeacon, beacon, eddystone, ibeacon, microbit
- Language: C++
- Size: 7.81 KB
- Stars: 12
- Watchers: 5
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# microbit-beacon-finder
The micro:bit finds various of BLE Beacons, and display the ID to LEDs.
## Supported Beacons
* iBeacon
* AltBeacon
* Eddystone-UID
* Eddystone-URL## How to Build
This project uses yotta to build, not pxt.
This project uses the another SoftDevice(S130). That enables BLE Central feature.Follow these steps to build the project.
** Don't forget copying NRF51822_S130.ld to NRF51822.ld ! **```bash
# set target to use S130 SoftDevice.
yt target bbc-microbit-classic-gcc-s130# the linker uses `NRF51822.ld` file, then copy `NRF51822_S130.ld` to `NRF51822.ld`.
cp yotta_targets/bbc-microbit-classic-gcc-s130/ld/NRF51822_S130.ld yotta_targets/bbc-microbit-classic-gcc-s130/ld/NRF51822.ld# build the project
yt build# transfer the hex file to micro:bit. (for example, macOS X)
cp build/bbc-microbit-classic-gcc-s130/source/microbit-ble-bridge-combined.hex /Volumes/MICROBIT/microbit-ble-bridge-combined.hex
```