pxt-calliope/libs/eddystone/eddystone.ts

14 lines
311 B
TypeScript
Raw Normal View History

2016-11-29 09:21:23 -08:00
/**
* Support for Eddystone beacons
*/
//% color=#0082FB weight=19
namespace eddystone {
//% shim=eddystone::advertiseUrl
2016-11-29 23:39:52 -08:00
export function advertiseUrl(url: string, powerLevel: number, connectable: boolean) {
2016-11-29 09:21:23 -08:00
}
//% shim=eddystone::stopAdvertising
export function stopAdvertising() {
}
}