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);
});