gattacker
Version:
22 lines (16 loc) • 490 B
JavaScript
var bleno = require('./index');
console.log('bleno - iBeacon');
bleno.on('stateChange', function(state) {
console.log('on -> stateChange: ' + state);
if (state === 'poweredOn') {
bleno.startAdvertisingIBeacon('e2c56db5dffb48d2b060d0f5a71096e0', 0, 0, -59);
} else {
bleno.stopAdvertising();
}
});
bleno.on('advertisingStart', function() {
console.log('on -> advertisingStart');
});
bleno.on('advertisingStop', function() {
console.log('on -> advertisingStop');
});