Beacon - eddystoneTlm不经常检测我的代码

时间:2018-03-12 10:24:57

标签: node.js ibeacon beacon

Beacon - eddystoneTlm我的代码经常无法检测到。 它通过Beacon移动应用程序检测@ 1秒间隔,但是我的代码在大约15分钟内检测到它。

这是我的代码 -

const noble = require('noble');

// Create a Linking object
const BeaconScanner = require('node-beacon-scanner');
const scanner = new BeaconScanner({'noble': noble});
scanner.onadvertisement = (ad) => {
  console.log(JSON.stringify(ad, null, '  '));
};

// Start scanning
scanner.startScan().then(() => {
  console.log('Started to scan.')  ;
}).catch((error) => {
  console.error(error);
});

0 个答案:

没有答案