This PXT package allows the micro:bit to act as iBeacon / AltBeacon advertiser.
On MakeCode workspace, open the menu item Add Package..., and specify the package id github:kshoji/pxt-bluetooth-beacons.
To advertise BLE iBeacon packets, write code like this.
bluetooth.advertiseIBeacon("E20A39F4-73F5-4BC4-A12F-17D1AD07A961", 1, 2, -56);
Arguments: uuid, majorId, minorId, and txPower.
- The
uuidargument is string style, and it can omit the hyphens. - The
majorIdminorIdarguments are numbers from 0 to 65535. - The
txPowerargument is a number (dBm) from -128 to 127.
To advertise BLE AltBeacon packets, write code like this.
let beaconId = pins.createBuffer(20)
beaconId.setNumber(NumberFormat.Int32BE, 0, 0x01020304)
beaconId.setNumber(NumberFormat.Int32BE, 4, 0x05060708)
beaconId.setNumber(NumberFormat.Int32BE, 8, 0x090A0B0C)
beaconId.setNumber(NumberFormat.Int32BE, 12, 0x0D0E0F10)
beaconId.setNumber(NumberFormat.Int32BE, 16, 0x11121314)
bluetooth.advertiseAltBeacon(0x0059, beaconId, -56)
Arguments: manufacturerId, beaconId, and txPower.
- The
manufacturerIdargument is a number from 0 to 65535. - The
beaconIdargument is a buffer with 20 bytes. - The
txPowerargument is a number (dBm) from 0 to -127.
- for PXT/microbit
(The metadata above is needed for package search.)
Source code: MIT
icon.png: Culmstock: Culmstock Beacon cc-by-sa/2.0 - © Martin Bodman - geograph.org.uk/p/213525
bluetooth
bluetooth-beacons=github:kshoji/pxt-bluetooth-beacons