EdisonやRaspberry PiでBLEのセントラルになる場合、Node.jsのモジュールnobleが便利です。 sandeepmistry/noble · GitHub 以下のコマンドでnobleをインストールします。 npm install noble 次にGetting startedを参考にコードを書きます。 https://github.com/sandeepmistry/noble/wiki/Getting-started var noble = require('noble'); noble.on('stateChange', function(state) { if (state === 'poweredOn') { noble.startScanning(); } else { noble.stopScanning(); } }); noble.on('discov