2013-09-30 14:50:56 +02:00
|
|
|
/**
|
|
|
|
* scanBLE.js
|
|
|
|
* Scans for a specific Bluetooth 4 (BLE) Device (by Name and UUID)
|
|
|
|
* Returns the Name the of Device when found and stops scanning
|
|
|
|
* Requires Noble: https://github.com/sandeepmistry/noble
|
2013-10-03 12:51:48 +02:00
|
|
|
* Copyright 2013 Charalampos Doukas - @BuildingIoT
|
2013-09-30 14:50:56 +02:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
**/
|
|
|
|
|
2013-10-03 12:51:48 +02:00
|
|
|
//might need to modify accordingly
|
2013-10-26 23:19:43 +02:00
|
|
|
var RED = require(process.env.NODE_RED_HOME+"/red/red");
|
2013-09-30 14:50:56 +02:00
|
|
|
|
|
|
|
//import noble
|
|
|
|
var noble = require('noble');
|
|
|
|
|
|
|
|
// The main node definition - most things happen in here
|
2013-10-12 15:48:49 +02:00
|
|
|
function BleScan(n) {
|
2013-10-26 23:19:43 +02:00
|
|
|
// Create a RED node
|
|
|
|
RED.nodes.createNode(this,n);
|
2013-09-30 14:50:56 +02:00
|
|
|
|
|
|
|
var msg = {};
|
2013-10-26 23:19:43 +02:00
|
|
|
var ble_name;
|
|
|
|
var node = this;
|
|
|
|
|
2013-09-30 14:50:56 +02:00
|
|
|
//get name and uuid from user
|
|
|
|
this.ble_name = n.ble_name;
|
|
|
|
this.ble_uuid = n.ble_uuid;
|
|
|
|
|
|
|
|
this.on("input", function(msg){
|
2013-10-26 23:19:43 +02:00
|
|
|
noble.startScanning();
|
2013-09-30 14:50:56 +02:00
|
|
|
});
|
|
|
|
noble.on('scanStart', function(msg) {
|
2013-10-26 23:19:43 +02:00
|
|
|
var msg = {};
|
|
|
|
msg.topic = node.topic;
|
|
|
|
msg.payload = "Scanning initiated..." //debugging
|
|
|
|
//console.log('scanning initiated...');
|
|
|
|
node.send(msg);
|
2013-09-30 14:50:56 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
noble.on('discover', function(peripheral) {
|
|
|
|
|
2013-10-26 23:19:43 +02:00
|
|
|
var msg = {};
|
|
|
|
msg.topic = node.topic;
|
|
|
|
msg.payload = "not found";
|
|
|
|
|
|
|
|
//check for the device name and the UUID (first one from the UUID list)
|
|
|
|
if(peripheral.advertisement.localName==node.ble_name && peripheral.advertisement.serviceUuids[0]==node.ble_uuid) {
|
|
|
|
msg.payload=peripheral.advertisement.localName;
|
|
|
|
noble.stopScanning(); }
|
|
|
|
node.send(msg);
|
2013-09-30 14:50:56 +02:00
|
|
|
});
|
|
|
|
|
2013-10-26 23:19:43 +02:00
|
|
|
this.on("close", function() {
|
|
|
|
try { noble.stopScanning(); }
|
|
|
|
catch (err) { console.log(err); }
|
|
|
|
});
|
2013-09-30 14:50:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Register the node by name. This must be called before overriding any of the
|
|
|
|
// Node functions.
|
2013-10-12 15:48:49 +02:00
|
|
|
RED.nodes.registerType("scanBLE", BleScan);
|