14 lines
289 B
TypeScript
14 lines
289 B
TypeScript
/**
|
|
* Support for Eddystone beacons
|
|
*/
|
|
//% color=#0082FB weight=19
|
|
namespace eddystone {
|
|
//% shim=eddystone::advertiseUrl
|
|
export function advertiseUrl(url: string, powerLevel: number) {
|
|
}
|
|
|
|
//% shim=eddystone::stopAdvertising
|
|
export function stopAdvertising() {
|
|
}
|
|
}
|