node-red-nodes/hardware/physical-web/physical-web.js

88 lines
2.4 KiB
JavaScript
Raw Normal View History

/**
* Copyright 2015 IBM Corp.
*
* 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.
**/
module.exports = function(RED) {
2016-02-20 18:50:37 +01:00
"use strict";
2016-02-20 18:50:37 +01:00
var eddystoneBeacon = require('eddystone-beacon');
var EddystoneBeaconScanner = require('eddystone-beacon-scanner');
2016-02-20 18:50:37 +01:00
function Beacon(n){
RED.nodes.createNode(this,n);
var node = this;
node.power = n.power;
node.period = n.period;
node.url = n.url;
2016-02-20 18:50:37 +01:00
node.options = {
txPowerLevel: node.power,
tlmPeriod: node.period
}
2016-02-20 18:50:37 +01:00
if (node.url) {
try {
eddystoneBeacon.advertiseUrl(node.url, node.options);
} catch(e){
node.error('Error setting beacon URL', e);
}
}
2016-02-20 18:50:37 +01:00
node.on('input', function(msg){
try {
eddystoneBeacon.advertiseUrl(msg.payload, node.options);
} catch(e){
node.error('error updating beacon URL', e);
}
});
2016-02-20 18:50:37 +01:00
node.on('close', function(done){
try {
eddystoneBeacon.stop();
done();
} catch(e){
node.error('error shuttingdown beacon', e);
}
});
2016-02-20 18:50:37 +01:00
}
RED.nodes.registerType("PhysicalWeb out", Beacon);
2016-02-20 18:50:37 +01:00
function Scanner(n){
RED.nodes.createNode(this,n);
var node = this;
node.topic = n.topic;
2016-02-20 18:50:37 +01:00
function onFound(beacon) {
node.send({
topic: node.topic,
payload: beacon
});
}
2016-02-20 18:50:37 +01:00
EddystoneBeaconScanner.on('found', onFound);
EddystoneBeaconScanner.on('updated', onFound);
2016-02-20 18:50:37 +01:00
node.on('close',function(done){
EddystoneBeaconScanner.removeListener('found', onFound);
EddystoneBeaconScanner.removeListener('updated', onFound);
done();
});
}
RED.nodes.registerType("PhysicalWeb in", Scanner);
2016-02-20 18:50:37 +01:00
};