Multi items

This commit is contained in:
2016-04-03 21:25:23 +02:00
parent fcc98b8f8a
commit ae76c95e7e
427 changed files with 68624 additions and 75 deletions
+54 -51
View File
@@ -1,60 +1,63 @@
var Tinkerforge = require('../Tinkerforge')
, Conf = require('./config.json')
, Helper = require('../Adawim/helper')
, Log = require('../Adawim/logging')
, http = require('http');
var HOST = Conf.host;
var PORT = Conf.port;
var UID = Conf.uid;
var ipcon = new Tinkerforge.IPConnection(); // Create IP connection
var dus = new Tinkerforge.BrickletDistanceUS(UID, ipcon); // Create device object
var counter = 0;
var readyForNextNotification = true;
ipcon.connect(HOST, PORT,
function (error) {
console.log('Error: ' + error);
}
); // Connect to brickd
// Don't use device before ipcon is connected
ipcon.on(Tinkerforge.IPConnection.CALLBACK_CONNECTED,
function (connectReason) {
// Set period for distance value callback to 0.2s (200ms)
// Note: The distance value callback is only called every 0.2 seconds
// if the distance value has changed since the last call!
dus.setDistanceCallbackPeriod(200);
}
);
// Register distance value callback
dus.on(Tinkerforge.BrickletDistanceUS.CALLBACK_DISTANCE,
// Callback function for distance value callback
function (distance) {
//console.log('Distance Value: ' + distance);
if(distance < 200 && readyForNextNotification) {
counter++;
readyForNextNotification = false;
var url2callObj = (counter % 2 == 0 ? Conf.on.action.on : Conf.on.action.off);
console.log('Distance Value: ' + distance + ', URL to call: ' + url2callObj.host + ':' + url2callObj.port + url2callObj.path);
doHoBuDoorBellCall(url2callObj);
setTimeout(function() { readyForNextNotification = true; }, Conf.on.action.timeout);
Helper.each(Conf.items, function(item) {
var HOST = item.host;
var PORT = item.port;
var UID = item.uid;
var ipcon = new Tinkerforge.IPConnection(); // Create IP connection
var dus = new Tinkerforge.BrickletDistanceUS(UID, ipcon); // Create device object
var counter = 0;
var readyForNextNotification = true;
ipcon.connect(HOST, PORT,
function (error) {
Log.log('Error: ' + error);
}
}
);
console.log('Press key to exit');
process.stdin.on('data',
function (data) {
); // Connect to brickd
// Don't use device before ipcon is connected
ipcon.on(Tinkerforge.IPConnection.CALLBACK_CONNECTED,
function (connectReason) {
// Set period for distance value callback to 0.2s (200ms)
// Note: The distance value callback is only called every 0.2 seconds
// if the distance value has changed since the last call!
dus.setDistanceCallbackPeriod(200);
}
);
// Register distance value callback
dus.on(Tinkerforge.BrickletDistanceUS.CALLBACK_DISTANCE,
// Callback function for distance value callback
function (distance) {
//Log.log('Distance Value: ' + distance);
if(distance < 200 && readyForNextNotification) {
counter++;
readyForNextNotification = false;
var url2callObj = (counter % 2 == 0 ? item.on.action.on : item.on.action.off);
Log.log('Distance Value: ' + distance + ', URL to call: ' + url2callObj.host + ':' + url2callObj.port + url2callObj.path);
doHoBuDoorBellCall(url2callObj);
setTimeout(function() { readyForNextNotification = true; }, item.on.action.timeout);
}
}
);
process.on( 'SIGINT', function() {
console.log( "\nGracefully disconnect " + HOST );
ipcon.disconnect();
process.exit(0);
}
);
process.exit( );
});
});
/* private */
@@ -69,7 +72,7 @@ function doHoBuDoorBellCall(options) {
//the whole response has been recieved, so we just print it out here
response.on('end', function () {
console.log(str);
Log.log(str);
});
}
+21 -17
View File
@@ -1,20 +1,24 @@
{
"host": "192.168.2.124",
"port": 4223,
"uid": "q2J",
"on": {
"action": {
"timeout": 4500,
"items": [
{
"host": "192.168.2.124",
"port": 4223,
"uid": "q2J",
"on": {
"host": "hobu",
"port": "2999",
"path": "/set/state/of/powercontrol/23/to/1/"
},
"off": {
"host": "hobu",
"port": "2999",
"path": "/set/state/of/powercontrol/23/to/0/"
"action": {
"timeout": 4500,
"on": {
"host": "hobu",
"port": "2999",
"path": "/set/state/of/powercontrol/23/to/1/"
},
"off": {
"host": "hobu",
"port": "2999",
"path": "/set/state/of/powercontrol/23/to/0/"
}
}
}
}
}
}
}
]
}