2016-11-06 21:26:19 +01:00
|
|
|
|
2016-04-09 18:59:36 +02:00
|
|
|
"use strict"
|
|
|
|
|
|
|
|
var events = require('events');
|
|
|
|
var util = require('util');
|
|
|
|
var Client = require('node-ssdp').Client;
|
|
|
|
var xml2js = require('xml2js');
|
|
|
|
var request = require('request');
|
|
|
|
var http = require('http');
|
|
|
|
var url = require('url');
|
|
|
|
var Q = require('q');
|
|
|
|
|
|
|
|
var urn = 'urn:Belkin:service:basicevent:1';
|
2017-04-06 12:21:33 +02:00
|
|
|
|
2016-04-09 18:59:36 +02:00
|
|
|
var postbodyheader = [
|
|
|
|
'<?xml version="1.0" encoding="utf-8"?>',
|
|
|
|
'<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">',
|
|
|
|
'<s:Body>'].join('\n');
|
|
|
|
|
|
|
|
var postbodyfooter = ['</s:Body>',
|
|
|
|
'</s:Envelope>'
|
|
|
|
].join('\n');
|
|
|
|
|
|
|
|
var getenddevs = {};
|
|
|
|
getenddevs.path = '/upnp/control/bridge1';
|
|
|
|
getenddevs.action = '"urn:Belkin:service:bridge:1#GetEndDevices"';
|
|
|
|
getenddevs.body = [
|
2016-11-06 21:26:19 +01:00
|
|
|
postbodyheader,
|
|
|
|
'<u:GetEndDevices xmlns:u="urn:Belkin:service:bridge:1">',
|
|
|
|
'<DevUDN>%s</DevUDN>',
|
2016-04-09 18:59:36 +02:00
|
|
|
'<ReqListType>PAIRED_LIST</ReqListType>',
|
|
|
|
'</u:GetEndDevices>',
|
|
|
|
postbodyfooter
|
|
|
|
].join('\n');
|
|
|
|
|
|
|
|
var getcapabilities = {};
|
|
|
|
getcapabilities.path = '/upnp/control/bridge1';
|
|
|
|
getcapabilities.action = '"urn:Belkin:service:bridge:1#GetCapabilityProfileIDList"';
|
|
|
|
getcapabilities.body = [
|
2016-11-06 21:26:19 +01:00
|
|
|
postbodyheader,
|
|
|
|
'<u:GetCapabilityProfileIDList xmlns:u="urn:Belkin:service:bridge:1">',
|
|
|
|
'<DevUDN>%s</DevUDN>',
|
2016-04-09 18:59:36 +02:00
|
|
|
'</u:GetCapabilityProfileIDList>',
|
|
|
|
postbodyfooter
|
|
|
|
].join('\n');
|
|
|
|
|
2017-04-06 12:21:33 +02:00
|
|
|
var getDevStatus = {
|
|
|
|
method: 'POST',
|
|
|
|
path: '/upnp/control/bridge1',
|
|
|
|
action: '"urn:Belkin:service:bridge:1#GetDeviceStatus"',
|
|
|
|
body: [
|
|
|
|
postbodyheader,
|
|
|
|
'<u:GetDeviceStatus xmlns:u="urn:Belkin:service:bridge:1">',
|
|
|
|
'<DeviceIDs>%s</DeviceIDs>',
|
|
|
|
'</u:GetDeviceStatus>',
|
|
|
|
postbodyfooter
|
|
|
|
].join('\n')
|
|
|
|
};
|
|
|
|
|
|
|
|
var getSocketState = {
|
|
|
|
method: 'POST',
|
|
|
|
path: '/upnp/control/basicevent1',
|
|
|
|
action: '"urn:Belkin:service:basicevent:1#GetBinaryState"',
|
|
|
|
body: [
|
|
|
|
postbodyheader,
|
|
|
|
'<u:GetBinaryState xmlns:u="urn:Belkin:service:basicevent:1">',
|
|
|
|
'</u:GetBinaryState>',
|
|
|
|
postbodyfooter
|
|
|
|
].join('\n')
|
|
|
|
}
|
|
|
|
|
2021-01-29 17:28:04 +01:00
|
|
|
var getInsightParameters = {
|
|
|
|
method: 'POST',
|
|
|
|
path: '/upnp/control/insight1',
|
|
|
|
action: '"urn:Belkin:service:insight:1#GetInsightParams"',
|
|
|
|
body: [
|
|
|
|
postbodyheader,
|
|
|
|
'<u:GetInsightParams xmlns:u="urn:Belkin:service:insight:1">',
|
|
|
|
'</u:GetInsightParams>',
|
|
|
|
postbodyfooter
|
|
|
|
].join('\n')
|
|
|
|
}
|
2017-04-06 12:21:33 +02:00
|
|
|
|
|
|
|
var setdevstatus = {};
|
|
|
|
setdevstatus.path = '/upnp/control/bridge1';
|
|
|
|
setdevstatus.action = '"urn:Belkin:service:bridge:1#SetDeviceStatus"';
|
|
|
|
setdevstatus.body = [
|
|
|
|
postbodyheader,
|
|
|
|
'<u:SetDeviceStatus xmlns:u="urn:Belkin:service:bridge:1">',
|
|
|
|
'<DeviceStatusList>',
|
|
|
|
'<?xml version="1.0" encoding="UTF-8"?><DeviceStatus><IsGroupAction>%s</IsGroupAction><DeviceID available="YES">%s</DeviceID><CapabilityID>%s</CapabilityID><CapabilityValue>%s</CapabilityValue></DeviceStatus>',
|
|
|
|
'</DeviceStatusList>',
|
|
|
|
'</u:SetDeviceStatus>',
|
|
|
|
postbodyfooter
|
|
|
|
].join('\n');
|
|
|
|
|
|
|
|
var capabilityMap = {
|
|
|
|
'10006': 'state',
|
|
|
|
'10008': 'dim',
|
|
|
|
'10300': 'color',
|
|
|
|
'30301': 'temperature'
|
|
|
|
};
|
|
|
|
|
|
|
|
var reverseCapabilityMap = {
|
|
|
|
'state': '10006',
|
|
|
|
'dim': '10008',
|
|
|
|
'color': '10300',
|
|
|
|
'temperature': '30301'
|
|
|
|
};
|
2016-04-09 18:59:36 +02:00
|
|
|
|
|
|
|
var WeMoNG = function () {
|
|
|
|
this.devices = {};
|
|
|
|
this._client;
|
|
|
|
this._interval;
|
|
|
|
events.EventEmitter.call(this);
|
|
|
|
|
2017-04-06 12:21:33 +02:00
|
|
|
this.capabilityMap = capabilityMap;
|
|
|
|
|
|
|
|
this.reverseCapabilityMap = reverseCapabilityMap;
|
|
|
|
|
2016-04-09 18:59:36 +02:00
|
|
|
}
|
|
|
|
|
2021-01-29 17:28:04 +01:00
|
|
|
function addInsightParams(insightParms, msg) {
|
|
|
|
var params = insightParms.split("|");
|
|
|
|
|
|
|
|
// Whether the device is ON or OFF (1 or 0)
|
|
|
|
msg.state = params[0];
|
|
|
|
|
|
|
|
// The date and time when the device was last turned on or off (as a Unix timestamp)
|
|
|
|
msg.onSince = parseInt(params[1]);
|
|
|
|
|
|
|
|
// How long the device was last ON for (seconds)
|
|
|
|
msg.onFor = parseInt(params[2]);
|
|
|
|
|
|
|
|
// How long the device has been ON today (seconds)
|
|
|
|
msg.onToday = parseInt(params[3]);
|
|
|
|
|
|
|
|
// How long the device has been ON total (seconds)
|
|
|
|
msg.onTotal = parseInt(params[4]);
|
|
|
|
|
|
|
|
// Timespan over which onTotal is relevant (seconds). Typically 2 weeks except when first started up.
|
|
|
|
//msg.timespan = parseInt(params[5]);
|
|
|
|
|
|
|
|
// Average power consumption (Watts)
|
|
|
|
msg.averagePower = parseInt(params[6]);
|
|
|
|
|
|
|
|
// Current power consumption (Watts). Conversion required because the value is delivered in milliWatts.
|
|
|
|
// It is called 'power' (instead of currentPower) for backwards compatibility ...
|
|
|
|
msg.power = params[7]/1000;
|
|
|
|
|
|
|
|
// Energy used today (Watt-hours, or Wh)
|
|
|
|
msg.energyToday = parseInt(params[8]);
|
|
|
|
|
|
|
|
// Energy used in total (Wh)
|
|
|
|
msg.energyTotal = parseFloat(params[9]);
|
|
|
|
|
|
|
|
// The 10-th parameter is not always available
|
|
|
|
if (params[10]) {
|
|
|
|
// Minimum energy usage to register the insight as switched on ( milliwats, default 8000mW, configurable via WeMo App)
|
|
|
|
msg.standbyLimit = parseInt(params[10]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-09 18:59:36 +02:00
|
|
|
util.inherits(WeMoNG, events.EventEmitter);
|
|
|
|
|
|
|
|
WeMoNG.prototype.start = function start() {
|
|
|
|
//console.log("searching");
|
|
|
|
var _wemo = this;
|
Silence Listener leak warning (#229)
* Replacing the original wemo node with the wemo-ng node
* Added install instructions
* Fix name of wemo out node
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
* Adds proper url length detection
* fix up the extra line added in the merge
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
load of tiny listing fixes, undef, unused, etc
fix slight wrinkle in new Wemo node
Fix wemo package name for npm.
Add contribution.md to node-red-nodes
to make it more obvious.
correct spelling in readme.md
revert .jshintrc
Added subtree and walker nodes. (#200)
Thanks @mikakaraila - very useful.
slight edits to snmp to pass jslint-ing
Bump underlying serial port nam version
correct BBB callback response to check exists
To Fix #198
* Adds proper url length detection
fix up the extra line added in the merge
* Added some more error checking in discovery
* Adds proper url length detection* fix up the extra line added in the merge
* Adds proper url length detection
* fix up the extra line added in the merge
Add line output mode for Daemon node
to address #202
Email rework (#195)
* Rework of Node-RED email nodes
tidy up email listing - no code changes
add latest email node dips
and update email node libs - bump version
update package version for nodes tests
add a few tests
geohash, smooth, base64, msgpack
correct path of source file
Thanks @Ltrlg
Fix typo in node-red-node-smooth (#205)
node-red-node-physical-web: Added msg.advertising = true/false to enable/disable advertising (#204)
* Added msg.advertising = true/false to enable/disable advertising
* Fixed comparison with bool
Don't use get_compass as it breaks get_orientation
add envelope to email node options
as part of node-red#875
Physical-web: Added status (found, updated and lost) as msg.topic (#206)
Added msg.advertising = true/false to enable/disable advertising
Added status (lost, updated, found) as msg.topic, if not already set
Added checkbox to allow duplicates or not.
* Re-added optional topic to avoid breaking compatibility
* Cleaner topic slection
add a v0.3 serial port to help with node5/6
let PI try to enable sensorTag access on install
Add cc and bcc options to email node
to close #209
updates to email node to better handle
different mail types. Still not great - but does the basics… To close
Better email node parsing (again)
Fix indent
fixed formating
* Fix heading in README.md
Fix node name in README.md
* Silences warnings about too many listeners
2016-08-17 10:11:37 +02:00
|
|
|
_wemo.setMaxListeners(0);
|
2017-12-02 11:54:47 +01:00
|
|
|
_wemo._client = new Client({'explicitSocketBind': true});
|
2016-04-09 18:59:36 +02:00
|
|
|
_wemo._client.setMaxListeners(0);
|
|
|
|
_wemo._client.on('response', function (headers, statusCode, rinfo) {
|
|
|
|
var location = url.parse(headers.LOCATION);
|
|
|
|
var port = location.port;
|
|
|
|
request.get(location.href, function(err, res, xml) {
|
Added more error checking in the discovery section (#214)
* Replacing the original wemo node with the wemo-ng node
* Added install instructions
* Fix name of wemo out node
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
* Adds proper url length detection
* fix up the extra line added in the merge
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
load of tiny listing fixes, undef, unused, etc
fix slight wrinkle in new Wemo node
Fix wemo package name for npm.
Add contribution.md to node-red-nodes
to make it more obvious.
correct spelling in readme.md
revert .jshintrc
Added subtree and walker nodes. (#200)
Thanks @mikakaraila - very useful.
slight edits to snmp to pass jslint-ing
Bump underlying serial port nam version
correct BBB callback response to check exists
To Fix #198
* Adds proper url length detection
fix up the extra line added in the merge
* Added some more error checking in discovery
* Adds proper url length detection* fix up the extra line added in the merge
* Adds proper url length detection
* fix up the extra line added in the merge
Add line output mode for Daemon node
to address #202
Email rework (#195)
* Rework of Node-RED email nodes
tidy up email listing - no code changes
add latest email node dips
and update email node libs - bump version
update package version for nodes tests
add a few tests
geohash, smooth, base64, msgpack
correct path of source file
Thanks @Ltrlg
Fix typo in node-red-node-smooth (#205)
node-red-node-physical-web: Added msg.advertising = true/false to enable/disable advertising (#204)
* Added msg.advertising = true/false to enable/disable advertising
* Fixed comparison with bool
Don't use get_compass as it breaks get_orientation
add envelope to email node options
as part of node-red#875
Physical-web: Added status (found, updated and lost) as msg.topic (#206)
Added msg.advertising = true/false to enable/disable advertising
Added status (lost, updated, found) as msg.topic, if not already set
Added checkbox to allow duplicates or not.
* Re-added optional topic to avoid breaking compatibility
* Cleaner topic slection
add a v0.3 serial port to help with node5/6
let PI try to enable sensorTag access on install
Add cc and bcc options to email node
to close #209
updates to email node to better handle
different mail types. Still not great - but does the basics… To close
Better email node parsing (again)
Fix indent
fixed formating
* Fix heading in README.md
Fix node name in README.md
2016-06-24 12:06:59 +02:00
|
|
|
if (!err) {
|
|
|
|
xml2js.parseString(xml, function(err, json) {
|
2017-04-19 16:21:05 +02:00
|
|
|
if (!err && json && json.root) {
|
Added more error checking in the discovery section (#214)
* Replacing the original wemo node with the wemo-ng node
* Added install instructions
* Fix name of wemo out node
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
* Adds proper url length detection
* fix up the extra line added in the merge
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
load of tiny listing fixes, undef, unused, etc
fix slight wrinkle in new Wemo node
Fix wemo package name for npm.
Add contribution.md to node-red-nodes
to make it more obvious.
correct spelling in readme.md
revert .jshintrc
Added subtree and walker nodes. (#200)
Thanks @mikakaraila - very useful.
slight edits to snmp to pass jslint-ing
Bump underlying serial port nam version
correct BBB callback response to check exists
To Fix #198
* Adds proper url length detection
fix up the extra line added in the merge
* Added some more error checking in discovery
* Adds proper url length detection* fix up the extra line added in the merge
* Adds proper url length detection
* fix up the extra line added in the merge
Add line output mode for Daemon node
to address #202
Email rework (#195)
* Rework of Node-RED email nodes
tidy up email listing - no code changes
add latest email node dips
and update email node libs - bump version
update package version for nodes tests
add a few tests
geohash, smooth, base64, msgpack
correct path of source file
Thanks @Ltrlg
Fix typo in node-red-node-smooth (#205)
node-red-node-physical-web: Added msg.advertising = true/false to enable/disable advertising (#204)
* Added msg.advertising = true/false to enable/disable advertising
* Fixed comparison with bool
Don't use get_compass as it breaks get_orientation
add envelope to email node options
as part of node-red#875
Physical-web: Added status (found, updated and lost) as msg.topic (#206)
Added msg.advertising = true/false to enable/disable advertising
Added status (lost, updated, found) as msg.topic, if not already set
Added checkbox to allow duplicates or not.
* Re-added optional topic to avoid breaking compatibility
* Cleaner topic slection
add a v0.3 serial port to help with node5/6
let PI try to enable sensorTag access on install
Add cc and bcc options to email node
to close #209
updates to email node to better handle
different mail types. Still not great - but does the basics… To close
Better email node parsing (again)
Fix indent
fixed formating
* Fix heading in README.md
Fix node name in README.md
2016-06-24 12:06:59 +02:00
|
|
|
var device = { ip: location.hostname, port: location.port };
|
|
|
|
for (var key in json.root.device[0]) {
|
|
|
|
device[key] = json.root.device[0][key][0];
|
2016-04-09 18:59:36 +02:00
|
|
|
}
|
Added more error checking in the discovery section (#214)
* Replacing the original wemo node with the wemo-ng node
* Added install instructions
* Fix name of wemo out node
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
* Adds proper url length detection
* fix up the extra line added in the merge
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
load of tiny listing fixes, undef, unused, etc
fix slight wrinkle in new Wemo node
Fix wemo package name for npm.
Add contribution.md to node-red-nodes
to make it more obvious.
correct spelling in readme.md
revert .jshintrc
Added subtree and walker nodes. (#200)
Thanks @mikakaraila - very useful.
slight edits to snmp to pass jslint-ing
Bump underlying serial port nam version
correct BBB callback response to check exists
To Fix #198
* Adds proper url length detection
fix up the extra line added in the merge
* Added some more error checking in discovery
* Adds proper url length detection* fix up the extra line added in the merge
* Adds proper url length detection
* fix up the extra line added in the merge
Add line output mode for Daemon node
to address #202
Email rework (#195)
* Rework of Node-RED email nodes
tidy up email listing - no code changes
add latest email node dips
and update email node libs - bump version
update package version for nodes tests
add a few tests
geohash, smooth, base64, msgpack
correct path of source file
Thanks @Ltrlg
Fix typo in node-red-node-smooth (#205)
node-red-node-physical-web: Added msg.advertising = true/false to enable/disable advertising (#204)
* Added msg.advertising = true/false to enable/disable advertising
* Fixed comparison with bool
Don't use get_compass as it breaks get_orientation
add envelope to email node options
as part of node-red#875
Physical-web: Added status (found, updated and lost) as msg.topic (#206)
Added msg.advertising = true/false to enable/disable advertising
Added status (lost, updated, found) as msg.topic, if not already set
Added checkbox to allow duplicates or not.
* Re-added optional topic to avoid breaking compatibility
* Cleaner topic slection
add a v0.3 serial port to help with node5/6
let PI try to enable sensorTag access on install
Add cc and bcc options to email node
to close #209
updates to email node to better handle
different mail types. Still not great - but does the basics… To close
Better email node parsing (again)
Fix indent
fixed formating
* Fix heading in README.md
Fix node name in README.md
2016-06-24 12:06:59 +02:00
|
|
|
if (device.deviceType == "urn:Belkin:device:bridge:1") {
|
|
|
|
//console.log( device.ip + ' -' + device.deviceType);
|
|
|
|
var ip = device.ip;
|
|
|
|
var port = device.port;
|
|
|
|
var udn = device.UDN;
|
|
|
|
var postoptions = {
|
|
|
|
host: ip,
|
|
|
|
port: port,
|
|
|
|
path: getenddevs.path,
|
|
|
|
method: 'POST',
|
|
|
|
headers: {
|
|
|
|
'SOAPACTION': getenddevs.action,
|
|
|
|
'Content-Type': 'text/xml; charset="utf-8"',
|
|
|
|
'Accept': ''
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var post_request = http.request(postoptions, function(res) {
|
|
|
|
var data = "";
|
|
|
|
res.setEncoding('utf8');
|
|
|
|
res.on('data', function(chunk) {
|
|
|
|
data += chunk;
|
|
|
|
});
|
|
|
|
|
|
|
|
res.on('end',function() {
|
|
|
|
xml2js.parseString(data, function(err, result) {
|
|
|
|
if(!err) {
|
2016-11-09 09:44:07 +01:00
|
|
|
if (result["s:Envelope"]) {
|
|
|
|
var list = result["s:Envelope"]["s:Body"][0]["u:GetEndDevicesResponse"][0].DeviceLists[0];
|
|
|
|
xml2js.parseString(list, function(err, result2) {
|
|
|
|
if (!err) {
|
|
|
|
var devinfo = result2.DeviceLists.DeviceList[0].DeviceInfos[0].DeviceInfo;
|
|
|
|
for (var i=0; i<devinfo.length; i++) {
|
|
|
|
var light = {
|
Added more error checking in the discovery section (#214)
* Replacing the original wemo node with the wemo-ng node
* Added install instructions
* Fix name of wemo out node
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
* Adds proper url length detection
* fix up the extra line added in the merge
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
load of tiny listing fixes, undef, unused, etc
fix slight wrinkle in new Wemo node
Fix wemo package name for npm.
Add contribution.md to node-red-nodes
to make it more obvious.
correct spelling in readme.md
revert .jshintrc
Added subtree and walker nodes. (#200)
Thanks @mikakaraila - very useful.
slight edits to snmp to pass jslint-ing
Bump underlying serial port nam version
correct BBB callback response to check exists
To Fix #198
* Adds proper url length detection
fix up the extra line added in the merge
* Added some more error checking in discovery
* Adds proper url length detection* fix up the extra line added in the merge
* Adds proper url length detection
* fix up the extra line added in the merge
Add line output mode for Daemon node
to address #202
Email rework (#195)
* Rework of Node-RED email nodes
tidy up email listing - no code changes
add latest email node dips
and update email node libs - bump version
update package version for nodes tests
add a few tests
geohash, smooth, base64, msgpack
correct path of source file
Thanks @Ltrlg
Fix typo in node-red-node-smooth (#205)
node-red-node-physical-web: Added msg.advertising = true/false to enable/disable advertising (#204)
* Added msg.advertising = true/false to enable/disable advertising
* Fixed comparison with bool
Don't use get_compass as it breaks get_orientation
add envelope to email node options
as part of node-red#875
Physical-web: Added status (found, updated and lost) as msg.topic (#206)
Added msg.advertising = true/false to enable/disable advertising
Added status (lost, updated, found) as msg.topic, if not already set
Added checkbox to allow duplicates or not.
* Re-added optional topic to avoid breaking compatibility
* Cleaner topic slection
add a v0.3 serial port to help with node5/6
let PI try to enable sensorTag access on install
Add cc and bcc options to email node
to close #209
updates to email node to better handle
different mail types. Still not great - but does the basics… To close
Better email node parsing (again)
Fix indent
fixed formating
* Fix heading in README.md
Fix node name in README.md
2016-06-24 12:06:59 +02:00
|
|
|
"ip": ip,
|
|
|
|
"port": port,
|
|
|
|
"udn": device.UDN,
|
2016-11-09 09:44:07 +01:00
|
|
|
"name": devinfo[i].FriendlyName[0],
|
|
|
|
"id": devinfo[i].DeviceID[0],
|
|
|
|
"capabilities": devinfo[i].CapabilityIDs[0],
|
|
|
|
"state": devinfo[i].CurrentState[0],
|
|
|
|
"type": "light",
|
Added more error checking in the discovery section (#214)
* Replacing the original wemo node with the wemo-ng node
* Added install instructions
* Fix name of wemo out node
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
* Adds proper url length detection
* fix up the extra line added in the merge
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
load of tiny listing fixes, undef, unused, etc
fix slight wrinkle in new Wemo node
Fix wemo package name for npm.
Add contribution.md to node-red-nodes
to make it more obvious.
correct spelling in readme.md
revert .jshintrc
Added subtree and walker nodes. (#200)
Thanks @mikakaraila - very useful.
slight edits to snmp to pass jslint-ing
Bump underlying serial port nam version
correct BBB callback response to check exists
To Fix #198
* Adds proper url length detection
fix up the extra line added in the merge
* Added some more error checking in discovery
* Adds proper url length detection* fix up the extra line added in the merge
* Adds proper url length detection
* fix up the extra line added in the merge
Add line output mode for Daemon node
to address #202
Email rework (#195)
* Rework of Node-RED email nodes
tidy up email listing - no code changes
add latest email node dips
and update email node libs - bump version
update package version for nodes tests
add a few tests
geohash, smooth, base64, msgpack
correct path of source file
Thanks @Ltrlg
Fix typo in node-red-node-smooth (#205)
node-red-node-physical-web: Added msg.advertising = true/false to enable/disable advertising (#204)
* Added msg.advertising = true/false to enable/disable advertising
* Fixed comparison with bool
Don't use get_compass as it breaks get_orientation
add envelope to email node options
as part of node-red#875
Physical-web: Added status (found, updated and lost) as msg.topic (#206)
Added msg.advertising = true/false to enable/disable advertising
Added status (lost, updated, found) as msg.topic, if not already set
Added checkbox to allow duplicates or not.
* Re-added optional topic to avoid breaking compatibility
* Cleaner topic slection
add a v0.3 serial port to help with node5/6
let PI try to enable sensorTag access on install
Add cc and bcc options to email node
to close #209
updates to email node to better handle
different mail types. Still not great - but does the basics… To close
Better email node parsing (again)
Fix indent
fixed formating
* Fix heading in README.md
Fix node name in README.md
2016-06-24 12:06:59 +02:00
|
|
|
"device": device
|
2016-11-09 09:44:07 +01:00
|
|
|
};
|
|
|
|
var key = device.serialNumber + "-" + light.id;
|
|
|
|
if (!_wemo.devices[key]){
|
|
|
|
_wemo.devices[key] = light;
|
|
|
|
_wemo.emit('discovered', key);
|
|
|
|
} else {
|
|
|
|
_wemo.devices[key] = light;
|
Added more error checking in the discovery section (#214)
* Replacing the original wemo node with the wemo-ng node
* Added install instructions
* Fix name of wemo out node
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
* Adds proper url length detection
* fix up the extra line added in the merge
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
load of tiny listing fixes, undef, unused, etc
fix slight wrinkle in new Wemo node
Fix wemo package name for npm.
Add contribution.md to node-red-nodes
to make it more obvious.
correct spelling in readme.md
revert .jshintrc
Added subtree and walker nodes. (#200)
Thanks @mikakaraila - very useful.
slight edits to snmp to pass jslint-ing
Bump underlying serial port nam version
correct BBB callback response to check exists
To Fix #198
* Adds proper url length detection
fix up the extra line added in the merge
* Added some more error checking in discovery
* Adds proper url length detection* fix up the extra line added in the merge
* Adds proper url length detection
* fix up the extra line added in the merge
Add line output mode for Daemon node
to address #202
Email rework (#195)
* Rework of Node-RED email nodes
tidy up email listing - no code changes
add latest email node dips
and update email node libs - bump version
update package version for nodes tests
add a few tests
geohash, smooth, base64, msgpack
correct path of source file
Thanks @Ltrlg
Fix typo in node-red-node-smooth (#205)
node-red-node-physical-web: Added msg.advertising = true/false to enable/disable advertising (#204)
* Added msg.advertising = true/false to enable/disable advertising
* Fixed comparison with bool
Don't use get_compass as it breaks get_orientation
add envelope to email node options
as part of node-red#875
Physical-web: Added status (found, updated and lost) as msg.topic (#206)
Added msg.advertising = true/false to enable/disable advertising
Added status (lost, updated, found) as msg.topic, if not already set
Added checkbox to allow duplicates or not.
* Re-added optional topic to avoid breaking compatibility
* Cleaner topic slection
add a v0.3 serial port to help with node5/6
let PI try to enable sensorTag access on install
Add cc and bcc options to email node
to close #209
updates to email node to better handle
different mail types. Still not great - but does the basics… To close
Better email node parsing (again)
Fix indent
fixed formating
* Fix heading in README.md
Fix node name in README.md
2016-06-24 12:06:59 +02:00
|
|
|
}
|
|
|
|
}
|
2016-11-09 09:44:07 +01:00
|
|
|
var groupinfo = result2.DeviceLists.DeviceList[0].GroupInfos;
|
|
|
|
if (groupinfo) {
|
|
|
|
for(var i=0; i<groupinfo.length; i++) {
|
|
|
|
var group = {
|
|
|
|
"ip": ip,
|
|
|
|
"port": port,
|
|
|
|
"udn": device.UDN,
|
|
|
|
"name": groupinfo[i].GroupInfo[0].GroupName[0],
|
|
|
|
"id": groupinfo[i].GroupInfo[0].GroupID[0],
|
|
|
|
"capabilities": groupinfo[i].GroupInfo[0].GroupCapabilityIDs[0],
|
|
|
|
"state": groupinfo[i].GroupInfo[0].GroupCapabilityValues[0],
|
|
|
|
"type": "light group",
|
|
|
|
"lights": [],
|
|
|
|
"device": device
|
|
|
|
}
|
|
|
|
for(var j=0; j<groupinfo[i].GroupInfo[0].DeviceInfos[0].DeviceInfo.length; j++) {
|
|
|
|
group.lights.push(groupinfo[i].GroupInfo[0].DeviceInfos[0].DeviceInfo[j].DeviceID[0]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var key = device.serialNumber + "-" + group.id;
|
|
|
|
if (!_wemo.devices[key]) {
|
|
|
|
_wemo.devices[key] = group;
|
|
|
|
_wemo.emit('discovered', key);
|
|
|
|
} else {
|
|
|
|
_wemo.devices[key] = group;
|
|
|
|
}
|
Added more error checking in the discovery section (#214)
* Replacing the original wemo node with the wemo-ng node
* Added install instructions
* Fix name of wemo out node
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
* Adds proper url length detection
* fix up the extra line added in the merge
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
load of tiny listing fixes, undef, unused, etc
fix slight wrinkle in new Wemo node
Fix wemo package name for npm.
Add contribution.md to node-red-nodes
to make it more obvious.
correct spelling in readme.md
revert .jshintrc
Added subtree and walker nodes. (#200)
Thanks @mikakaraila - very useful.
slight edits to snmp to pass jslint-ing
Bump underlying serial port nam version
correct BBB callback response to check exists
To Fix #198
* Adds proper url length detection
fix up the extra line added in the merge
* Added some more error checking in discovery
* Adds proper url length detection* fix up the extra line added in the merge
* Adds proper url length detection
* fix up the extra line added in the merge
Add line output mode for Daemon node
to address #202
Email rework (#195)
* Rework of Node-RED email nodes
tidy up email listing - no code changes
add latest email node dips
and update email node libs - bump version
update package version for nodes tests
add a few tests
geohash, smooth, base64, msgpack
correct path of source file
Thanks @Ltrlg
Fix typo in node-red-node-smooth (#205)
node-red-node-physical-web: Added msg.advertising = true/false to enable/disable advertising (#204)
* Added msg.advertising = true/false to enable/disable advertising
* Fixed comparison with bool
Don't use get_compass as it breaks get_orientation
add envelope to email node options
as part of node-red#875
Physical-web: Added status (found, updated and lost) as msg.topic (#206)
Added msg.advertising = true/false to enable/disable advertising
Added status (lost, updated, found) as msg.topic, if not already set
Added checkbox to allow duplicates or not.
* Re-added optional topic to avoid breaking compatibility
* Cleaner topic slection
add a v0.3 serial port to help with node5/6
let PI try to enable sensorTag access on install
Add cc and bcc options to email node
to close #209
updates to email node to better handle
different mail types. Still not great - but does the basics… To close
Better email node parsing (again)
Fix indent
fixed formating
* Fix heading in README.md
Fix node name in README.md
2016-06-24 12:06:59 +02:00
|
|
|
}
|
2016-04-09 18:59:36 +02:00
|
|
|
}
|
2016-11-09 09:44:07 +01:00
|
|
|
});
|
|
|
|
}
|
2016-04-09 18:59:36 +02:00
|
|
|
}
|
|
|
|
});
|
Added more error checking in the discovery section (#214)
* Replacing the original wemo node with the wemo-ng node
* Added install instructions
* Fix name of wemo out node
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
* Adds proper url length detection
* fix up the extra line added in the merge
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
load of tiny listing fixes, undef, unused, etc
fix slight wrinkle in new Wemo node
Fix wemo package name for npm.
Add contribution.md to node-red-nodes
to make it more obvious.
correct spelling in readme.md
revert .jshintrc
Added subtree and walker nodes. (#200)
Thanks @mikakaraila - very useful.
slight edits to snmp to pass jslint-ing
Bump underlying serial port nam version
correct BBB callback response to check exists
To Fix #198
* Adds proper url length detection
fix up the extra line added in the merge
* Added some more error checking in discovery
* Adds proper url length detection* fix up the extra line added in the merge
* Adds proper url length detection
* fix up the extra line added in the merge
Add line output mode for Daemon node
to address #202
Email rework (#195)
* Rework of Node-RED email nodes
tidy up email listing - no code changes
add latest email node dips
and update email node libs - bump version
update package version for nodes tests
add a few tests
geohash, smooth, base64, msgpack
correct path of source file
Thanks @Ltrlg
Fix typo in node-red-node-smooth (#205)
node-red-node-physical-web: Added msg.advertising = true/false to enable/disable advertising (#204)
* Added msg.advertising = true/false to enable/disable advertising
* Fixed comparison with bool
Don't use get_compass as it breaks get_orientation
add envelope to email node options
as part of node-red#875
Physical-web: Added status (found, updated and lost) as msg.topic (#206)
Added msg.advertising = true/false to enable/disable advertising
Added status (lost, updated, found) as msg.topic, if not already set
Added checkbox to allow duplicates or not.
* Re-added optional topic to avoid breaking compatibility
* Cleaner topic slection
add a v0.3 serial port to help with node5/6
let PI try to enable sensorTag access on install
Add cc and bcc options to email node
to close #209
updates to email node to better handle
different mail types. Still not great - but does the basics… To close
Better email node parsing (again)
Fix indent
fixed formating
* Fix heading in README.md
Fix node name in README.md
2016-06-24 12:06:59 +02:00
|
|
|
});
|
2016-04-09 18:59:36 +02:00
|
|
|
});
|
Added more error checking in the discovery section (#214)
* Replacing the original wemo node with the wemo-ng node
* Added install instructions
* Fix name of wemo out node
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
* Adds proper url length detection
* fix up the extra line added in the merge
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
load of tiny listing fixes, undef, unused, etc
fix slight wrinkle in new Wemo node
Fix wemo package name for npm.
Add contribution.md to node-red-nodes
to make it more obvious.
correct spelling in readme.md
revert .jshintrc
Added subtree and walker nodes. (#200)
Thanks @mikakaraila - very useful.
slight edits to snmp to pass jslint-ing
Bump underlying serial port nam version
correct BBB callback response to check exists
To Fix #198
* Adds proper url length detection
fix up the extra line added in the merge
* Added some more error checking in discovery
* Adds proper url length detection* fix up the extra line added in the merge
* Adds proper url length detection
* fix up the extra line added in the merge
Add line output mode for Daemon node
to address #202
Email rework (#195)
* Rework of Node-RED email nodes
tidy up email listing - no code changes
add latest email node dips
and update email node libs - bump version
update package version for nodes tests
add a few tests
geohash, smooth, base64, msgpack
correct path of source file
Thanks @Ltrlg
Fix typo in node-red-node-smooth (#205)
node-red-node-physical-web: Added msg.advertising = true/false to enable/disable advertising (#204)
* Added msg.advertising = true/false to enable/disable advertising
* Fixed comparison with bool
Don't use get_compass as it breaks get_orientation
add envelope to email node options
as part of node-red#875
Physical-web: Added status (found, updated and lost) as msg.topic (#206)
Added msg.advertising = true/false to enable/disable advertising
Added status (lost, updated, found) as msg.topic, if not already set
Added checkbox to allow duplicates or not.
* Re-added optional topic to avoid breaking compatibility
* Cleaner topic slection
add a v0.3 serial port to help with node5/6
let PI try to enable sensorTag access on install
Add cc and bcc options to email node
to close #209
updates to email node to better handle
different mail types. Still not great - but does the basics… To close
Better email node parsing (again)
Fix indent
fixed formating
* Fix heading in README.md
Fix node name in README.md
2016-06-24 12:06:59 +02:00
|
|
|
|
2020-04-11 11:47:47 +02:00
|
|
|
post_request.on('timeout', function(){
|
|
|
|
post_request.abort();
|
|
|
|
});
|
|
|
|
|
2021-04-10 21:02:36 +02:00
|
|
|
post_request.on('error', function(err){
|
|
|
|
// should log err
|
|
|
|
//console.log(err);
|
|
|
|
})
|
|
|
|
|
Added more error checking in the discovery section (#214)
* Replacing the original wemo node with the wemo-ng node
* Added install instructions
* Fix name of wemo out node
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
* Adds proper url length detection
* fix up the extra line added in the merge
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
load of tiny listing fixes, undef, unused, etc
fix slight wrinkle in new Wemo node
Fix wemo package name for npm.
Add contribution.md to node-red-nodes
to make it more obvious.
correct spelling in readme.md
revert .jshintrc
Added subtree and walker nodes. (#200)
Thanks @mikakaraila - very useful.
slight edits to snmp to pass jslint-ing
Bump underlying serial port nam version
correct BBB callback response to check exists
To Fix #198
* Adds proper url length detection
fix up the extra line added in the merge
* Added some more error checking in discovery
* Adds proper url length detection* fix up the extra line added in the merge
* Adds proper url length detection
* fix up the extra line added in the merge
Add line output mode for Daemon node
to address #202
Email rework (#195)
* Rework of Node-RED email nodes
tidy up email listing - no code changes
add latest email node dips
and update email node libs - bump version
update package version for nodes tests
add a few tests
geohash, smooth, base64, msgpack
correct path of source file
Thanks @Ltrlg
Fix typo in node-red-node-smooth (#205)
node-red-node-physical-web: Added msg.advertising = true/false to enable/disable advertising (#204)
* Added msg.advertising = true/false to enable/disable advertising
* Fixed comparison with bool
Don't use get_compass as it breaks get_orientation
add envelope to email node options
as part of node-red#875
Physical-web: Added status (found, updated and lost) as msg.topic (#206)
Added msg.advertising = true/false to enable/disable advertising
Added status (lost, updated, found) as msg.topic, if not already set
Added checkbox to allow duplicates or not.
* Re-added optional topic to avoid breaking compatibility
* Cleaner topic slection
add a v0.3 serial port to help with node5/6
let PI try to enable sensorTag access on install
Add cc and bcc options to email node
to close #209
updates to email node to better handle
different mail types. Still not great - but does the basics… To close
Better email node parsing (again)
Fix indent
fixed formating
* Fix heading in README.md
Fix node name in README.md
2016-06-24 12:06:59 +02:00
|
|
|
post_request.write(util.format(getenddevs.body, udn));
|
|
|
|
post_request.end();
|
|
|
|
|
2021-01-29 17:28:04 +01:00
|
|
|
} else if (device.deviceType.indexOf('urn:Belkin:device:insight') != -1) {
|
|
|
|
// Insight socket (with power measurement)
|
|
|
|
var socket = {
|
|
|
|
"ip": location.hostname,
|
|
|
|
"port": location.port,
|
|
|
|
"name": device.friendlyName,
|
|
|
|
"type": "socket_insight",
|
|
|
|
"device": device
|
|
|
|
};
|
|
|
|
if (!_wemo.devices[device.serialNumber]) {
|
|
|
|
_wemo.devices[device.serialNumber] = socket;
|
|
|
|
_wemo.emit('discovered',device.serialNumber);
|
|
|
|
} else {
|
|
|
|
_wemo.devices[device.serialNumber] = socket;
|
|
|
|
}
|
Added more error checking in the discovery section (#214)
* Replacing the original wemo node with the wemo-ng node
* Added install instructions
* Fix name of wemo out node
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
* Adds proper url length detection
* fix up the extra line added in the merge
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
load of tiny listing fixes, undef, unused, etc
fix slight wrinkle in new Wemo node
Fix wemo package name for npm.
Add contribution.md to node-red-nodes
to make it more obvious.
correct spelling in readme.md
revert .jshintrc
Added subtree and walker nodes. (#200)
Thanks @mikakaraila - very useful.
slight edits to snmp to pass jslint-ing
Bump underlying serial port nam version
correct BBB callback response to check exists
To Fix #198
* Adds proper url length detection
fix up the extra line added in the merge
* Added some more error checking in discovery
* Adds proper url length detection* fix up the extra line added in the merge
* Adds proper url length detection
* fix up the extra line added in the merge
Add line output mode for Daemon node
to address #202
Email rework (#195)
* Rework of Node-RED email nodes
tidy up email listing - no code changes
add latest email node dips
and update email node libs - bump version
update package version for nodes tests
add a few tests
geohash, smooth, base64, msgpack
correct path of source file
Thanks @Ltrlg
Fix typo in node-red-node-smooth (#205)
node-red-node-physical-web: Added msg.advertising = true/false to enable/disable advertising (#204)
* Added msg.advertising = true/false to enable/disable advertising
* Fixed comparison with bool
Don't use get_compass as it breaks get_orientation
add envelope to email node options
as part of node-red#875
Physical-web: Added status (found, updated and lost) as msg.topic (#206)
Added msg.advertising = true/false to enable/disable advertising
Added status (lost, updated, found) as msg.topic, if not already set
Added checkbox to allow duplicates or not.
* Re-added optional topic to avoid breaking compatibility
* Cleaner topic slection
add a v0.3 serial port to help with node5/6
let PI try to enable sensorTag access on install
Add cc and bcc options to email node
to close #209
updates to email node to better handle
different mail types. Still not great - but does the basics… To close
Better email node parsing (again)
Fix indent
fixed formating
* Fix heading in README.md
Fix node name in README.md
2016-06-24 12:06:59 +02:00
|
|
|
} else if (device.deviceType.indexOf('urn:Belkin:device') != -1) {
|
2021-01-29 17:28:04 +01:00
|
|
|
// classic socket (without power measurement)
|
Added more error checking in the discovery section (#214)
* Replacing the original wemo node with the wemo-ng node
* Added install instructions
* Fix name of wemo out node
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
* Adds proper url length detection
* fix up the extra line added in the merge
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
load of tiny listing fixes, undef, unused, etc
fix slight wrinkle in new Wemo node
Fix wemo package name for npm.
Add contribution.md to node-red-nodes
to make it more obvious.
correct spelling in readme.md
revert .jshintrc
Added subtree and walker nodes. (#200)
Thanks @mikakaraila - very useful.
slight edits to snmp to pass jslint-ing
Bump underlying serial port nam version
correct BBB callback response to check exists
To Fix #198
* Adds proper url length detection
fix up the extra line added in the merge
* Added some more error checking in discovery
* Adds proper url length detection* fix up the extra line added in the merge
* Adds proper url length detection
* fix up the extra line added in the merge
Add line output mode for Daemon node
to address #202
Email rework (#195)
* Rework of Node-RED email nodes
tidy up email listing - no code changes
add latest email node dips
and update email node libs - bump version
update package version for nodes tests
add a few tests
geohash, smooth, base64, msgpack
correct path of source file
Thanks @Ltrlg
Fix typo in node-red-node-smooth (#205)
node-red-node-physical-web: Added msg.advertising = true/false to enable/disable advertising (#204)
* Added msg.advertising = true/false to enable/disable advertising
* Fixed comparison with bool
Don't use get_compass as it breaks get_orientation
add envelope to email node options
as part of node-red#875
Physical-web: Added status (found, updated and lost) as msg.topic (#206)
Added msg.advertising = true/false to enable/disable advertising
Added status (lost, updated, found) as msg.topic, if not already set
Added checkbox to allow duplicates or not.
* Re-added optional topic to avoid breaking compatibility
* Cleaner topic slection
add a v0.3 serial port to help with node5/6
let PI try to enable sensorTag access on install
Add cc and bcc options to email node
to close #209
updates to email node to better handle
different mail types. Still not great - but does the basics… To close
Better email node parsing (again)
Fix indent
fixed formating
* Fix heading in README.md
Fix node name in README.md
2016-06-24 12:06:59 +02:00
|
|
|
var socket = {
|
|
|
|
"ip": location.hostname,
|
|
|
|
"port": location.port,
|
|
|
|
"name": device.friendlyName,
|
|
|
|
"type": "socket",
|
|
|
|
"device": device
|
|
|
|
};
|
|
|
|
if (!_wemo.devices[device.serialNumber]) {
|
|
|
|
_wemo.devices[device.serialNumber] = socket;
|
|
|
|
_wemo.emit('discovered',device.serialNumber);
|
|
|
|
} else {
|
|
|
|
_wemo.devices[device.serialNumber] = socket;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
//other stuff
|
|
|
|
//console.log( device.ip + ' -' + device.deviceType);
|
|
|
|
}
|
2016-04-09 18:59:36 +02:00
|
|
|
} else {
|
Added more error checking in the discovery section (#214)
* Replacing the original wemo node with the wemo-ng node
* Added install instructions
* Fix name of wemo out node
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
* Adds proper url length detection
* fix up the extra line added in the merge
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
load of tiny listing fixes, undef, unused, etc
fix slight wrinkle in new Wemo node
Fix wemo package name for npm.
Add contribution.md to node-red-nodes
to make it more obvious.
correct spelling in readme.md
revert .jshintrc
Added subtree and walker nodes. (#200)
Thanks @mikakaraila - very useful.
slight edits to snmp to pass jslint-ing
Bump underlying serial port nam version
correct BBB callback response to check exists
To Fix #198
* Adds proper url length detection
fix up the extra line added in the merge
* Added some more error checking in discovery
* Adds proper url length detection* fix up the extra line added in the merge
* Adds proper url length detection
* fix up the extra line added in the merge
Add line output mode for Daemon node
to address #202
Email rework (#195)
* Rework of Node-RED email nodes
tidy up email listing - no code changes
add latest email node dips
and update email node libs - bump version
update package version for nodes tests
add a few tests
geohash, smooth, base64, msgpack
correct path of source file
Thanks @Ltrlg
Fix typo in node-red-node-smooth (#205)
node-red-node-physical-web: Added msg.advertising = true/false to enable/disable advertising (#204)
* Added msg.advertising = true/false to enable/disable advertising
* Fixed comparison with bool
Don't use get_compass as it breaks get_orientation
add envelope to email node options
as part of node-red#875
Physical-web: Added status (found, updated and lost) as msg.topic (#206)
Added msg.advertising = true/false to enable/disable advertising
Added status (lost, updated, found) as msg.topic, if not already set
Added checkbox to allow duplicates or not.
* Re-added optional topic to avoid breaking compatibility
* Cleaner topic slection
add a v0.3 serial port to help with node5/6
let PI try to enable sensorTag access on install
Add cc and bcc options to email node
to close #209
updates to email node to better handle
different mail types. Still not great - but does the basics… To close
Better email node parsing (again)
Fix indent
fixed formating
* Fix heading in README.md
Fix node name in README.md
2016-06-24 12:06:59 +02:00
|
|
|
console.error("failed to parse respose from " + location.href);
|
Silence Listener leak warning (#229)
* Replacing the original wemo node with the wemo-ng node
* Added install instructions
* Fix name of wemo out node
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
* Adds proper url length detection
* fix up the extra line added in the merge
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
load of tiny listing fixes, undef, unused, etc
fix slight wrinkle in new Wemo node
Fix wemo package name for npm.
Add contribution.md to node-red-nodes
to make it more obvious.
correct spelling in readme.md
revert .jshintrc
Added subtree and walker nodes. (#200)
Thanks @mikakaraila - very useful.
slight edits to snmp to pass jslint-ing
Bump underlying serial port nam version
correct BBB callback response to check exists
To Fix #198
* Adds proper url length detection
fix up the extra line added in the merge
* Added some more error checking in discovery
* Adds proper url length detection* fix up the extra line added in the merge
* Adds proper url length detection
* fix up the extra line added in the merge
Add line output mode for Daemon node
to address #202
Email rework (#195)
* Rework of Node-RED email nodes
tidy up email listing - no code changes
add latest email node dips
and update email node libs - bump version
update package version for nodes tests
add a few tests
geohash, smooth, base64, msgpack
correct path of source file
Thanks @Ltrlg
Fix typo in node-red-node-smooth (#205)
node-red-node-physical-web: Added msg.advertising = true/false to enable/disable advertising (#204)
* Added msg.advertising = true/false to enable/disable advertising
* Fixed comparison with bool
Don't use get_compass as it breaks get_orientation
add envelope to email node options
as part of node-red#875
Physical-web: Added status (found, updated and lost) as msg.topic (#206)
Added msg.advertising = true/false to enable/disable advertising
Added status (lost, updated, found) as msg.topic, if not already set
Added checkbox to allow duplicates or not.
* Re-added optional topic to avoid breaking compatibility
* Cleaner topic slection
add a v0.3 serial port to help with node5/6
let PI try to enable sensorTag access on install
Add cc and bcc options to email node
to close #209
updates to email node to better handle
different mail types. Still not great - but does the basics… To close
Better email node parsing (again)
Fix indent
fixed formating
* Fix heading in README.md
Fix node name in README.md
* Silences warnings about too many listeners
2016-08-17 10:11:37 +02:00
|
|
|
console.error(xml);
|
Added more error checking in the discovery section (#214)
* Replacing the original wemo node with the wemo-ng node
* Added install instructions
* Fix name of wemo out node
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
* Adds proper url length detection
* fix up the extra line added in the merge
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
load of tiny listing fixes, undef, unused, etc
fix slight wrinkle in new Wemo node
Fix wemo package name for npm.
Add contribution.md to node-red-nodes
to make it more obvious.
correct spelling in readme.md
revert .jshintrc
Added subtree and walker nodes. (#200)
Thanks @mikakaraila - very useful.
slight edits to snmp to pass jslint-ing
Bump underlying serial port nam version
correct BBB callback response to check exists
To Fix #198
* Adds proper url length detection
fix up the extra line added in the merge
* Added some more error checking in discovery
* Adds proper url length detection* fix up the extra line added in the merge
* Adds proper url length detection
* fix up the extra line added in the merge
Add line output mode for Daemon node
to address #202
Email rework (#195)
* Rework of Node-RED email nodes
tidy up email listing - no code changes
add latest email node dips
and update email node libs - bump version
update package version for nodes tests
add a few tests
geohash, smooth, base64, msgpack
correct path of source file
Thanks @Ltrlg
Fix typo in node-red-node-smooth (#205)
node-red-node-physical-web: Added msg.advertising = true/false to enable/disable advertising (#204)
* Added msg.advertising = true/false to enable/disable advertising
* Fixed comparison with bool
Don't use get_compass as it breaks get_orientation
add envelope to email node options
as part of node-red#875
Physical-web: Added status (found, updated and lost) as msg.topic (#206)
Added msg.advertising = true/false to enable/disable advertising
Added status (lost, updated, found) as msg.topic, if not already set
Added checkbox to allow duplicates or not.
* Re-added optional topic to avoid breaking compatibility
* Cleaner topic slection
add a v0.3 serial port to help with node5/6
let PI try to enable sensorTag access on install
Add cc and bcc options to email node
to close #209
updates to email node to better handle
different mail types. Still not great - but does the basics… To close
Better email node parsing (again)
Fix indent
fixed formating
* Fix heading in README.md
Fix node name in README.md
2016-06-24 12:06:59 +02:00
|
|
|
console.error(err);
|
2016-04-09 18:59:36 +02:00
|
|
|
}
|
Added more error checking in the discovery section (#214)
* Replacing the original wemo node with the wemo-ng node
* Added install instructions
* Fix name of wemo out node
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
* Adds proper url length detection
* fix up the extra line added in the merge
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
load of tiny listing fixes, undef, unused, etc
fix slight wrinkle in new Wemo node
Fix wemo package name for npm.
Add contribution.md to node-red-nodes
to make it more obvious.
correct spelling in readme.md
revert .jshintrc
Added subtree and walker nodes. (#200)
Thanks @mikakaraila - very useful.
slight edits to snmp to pass jslint-ing
Bump underlying serial port nam version
correct BBB callback response to check exists
To Fix #198
* Adds proper url length detection
fix up the extra line added in the merge
* Added some more error checking in discovery
* Adds proper url length detection* fix up the extra line added in the merge
* Adds proper url length detection
* fix up the extra line added in the merge
Add line output mode for Daemon node
to address #202
Email rework (#195)
* Rework of Node-RED email nodes
tidy up email listing - no code changes
add latest email node dips
and update email node libs - bump version
update package version for nodes tests
add a few tests
geohash, smooth, base64, msgpack
correct path of source file
Thanks @Ltrlg
Fix typo in node-red-node-smooth (#205)
node-red-node-physical-web: Added msg.advertising = true/false to enable/disable advertising (#204)
* Added msg.advertising = true/false to enable/disable advertising
* Fixed comparison with bool
Don't use get_compass as it breaks get_orientation
add envelope to email node options
as part of node-red#875
Physical-web: Added status (found, updated and lost) as msg.topic (#206)
Added msg.advertising = true/false to enable/disable advertising
Added status (lost, updated, found) as msg.topic, if not already set
Added checkbox to allow duplicates or not.
* Re-added optional topic to avoid breaking compatibility
* Cleaner topic slection
add a v0.3 serial port to help with node5/6
let PI try to enable sensorTag access on install
Add cc and bcc options to email node
to close #209
updates to email node to better handle
different mail types. Still not great - but does the basics… To close
Better email node parsing (again)
Fix indent
fixed formating
* Fix heading in README.md
Fix node name in README.md
2016-06-24 12:06:59 +02:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
console.error("Failed to GET info from " + location.href);
|
|
|
|
console.error(err);
|
|
|
|
}
|
2016-04-09 18:59:36 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
_wemo._client.search(urn);
|
|
|
|
setTimeout(function(){
|
|
|
|
//console.log("stopping");
|
|
|
|
_wemo._client._stop();
|
|
|
|
//console.log("%j", devices);
|
|
|
|
}, 10000);
|
|
|
|
}
|
|
|
|
|
|
|
|
WeMoNG.prototype.get = function get(deviceID) {
|
|
|
|
return this.devices[deviceID];
|
|
|
|
}
|
|
|
|
|
|
|
|
WeMoNG.prototype.toggleSocket = function toggleSocket(socket, on) {
|
2022-04-18 14:25:21 +02:00
|
|
|
|
|
|
|
var body = [
|
|
|
|
postbodyheader,
|
|
|
|
'<u:SetBinaryState xmlns:u="urn:Belkin:service:basicevent:1">',
|
|
|
|
'<BinaryState>%s</BinaryState>',
|
|
|
|
'</u:SetBinaryState>',
|
|
|
|
postbodyfooter
|
|
|
|
].join('\n');
|
|
|
|
|
|
|
|
var data = util.format(body, on);
|
|
|
|
|
2016-04-09 18:59:36 +02:00
|
|
|
var postoptions = {
|
|
|
|
host: socket.ip,
|
|
|
|
port: socket.port,
|
|
|
|
path: "/upnp/control/basicevent1",
|
|
|
|
method: 'POST',
|
|
|
|
headers: {
|
|
|
|
'SOAPACTION': '"urn:Belkin:service:basicevent:1#SetBinaryState"',
|
|
|
|
'Content-Type': 'text/xml; charset="utf-8"',
|
2022-04-18 14:25:21 +02:00
|
|
|
'Accept': '',
|
|
|
|
'Content-Length': data.length
|
2016-04-09 18:59:36 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var post_request = http.request(postoptions, function(res) {
|
|
|
|
var data = "";
|
|
|
|
res.setEncoding('utf8');
|
|
|
|
res.on('data', function(chunk){
|
|
|
|
data += chunk
|
|
|
|
});
|
|
|
|
|
|
|
|
res.on('end', function(){
|
|
|
|
//console.log(data);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
post_request.on('error', function (e) {
|
2021-04-10 21:02:36 +02:00
|
|
|
// console.log(e);
|
|
|
|
// console.log("%j", postoptions);
|
2016-04-09 18:59:36 +02:00
|
|
|
});
|
|
|
|
|
2020-04-11 11:47:47 +02:00
|
|
|
post_request.on('timeout', function () {
|
2021-04-10 21:02:36 +02:00
|
|
|
// console.log("Timeout");
|
2020-04-11 11:47:47 +02:00
|
|
|
post_request.abort();
|
2020-02-19 13:21:44 +01:00
|
|
|
});
|
|
|
|
|
2022-04-18 14:25:21 +02:00
|
|
|
post_request.write(data);
|
2016-04-09 18:59:36 +02:00
|
|
|
post_request.end();
|
|
|
|
}
|
|
|
|
|
2017-04-06 12:21:33 +02:00
|
|
|
WeMoNG.prototype.getSocketStatus = function getSocketStatus(socket) {
|
|
|
|
var postoptions = {
|
|
|
|
host: socket.ip,
|
|
|
|
port: socket.port,
|
|
|
|
path: getSocketState.path,
|
|
|
|
method: getSocketState.method,
|
|
|
|
headers: {
|
|
|
|
'SOAPACTION': getSocketState.action,
|
|
|
|
'Content-Type': 'text/xml; charset="utf-8"',
|
2022-04-18 19:24:06 +02:00
|
|
|
'Accept': '',
|
2022-04-18 14:25:21 +02:00
|
|
|
'Content-Length': getSocketState.body.length
|
2017-04-06 12:21:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var def = Q.defer();
|
|
|
|
|
|
|
|
var post_request = http.request(postoptions, function(res){
|
|
|
|
var data = "";
|
|
|
|
res.setEncoding('utf8');
|
|
|
|
res.on('data', function(chunk){
|
|
|
|
data += chunk;
|
|
|
|
});
|
|
|
|
|
|
|
|
res.on('end', function(){
|
|
|
|
xml2js.parseString(data, function(err, result){
|
2020-08-17 22:43:12 +02:00
|
|
|
if (!err && result["s:Envelope"]) {
|
2017-04-06 12:21:33 +02:00
|
|
|
var status = result["s:Envelope"]["s:Body"][0]["u:GetBinaryStateResponse"][0]["BinaryState"][0];
|
|
|
|
status = parseInt(status);
|
|
|
|
def.resolve(status);
|
2020-08-17 22:43:12 +02:00
|
|
|
} else {
|
2021-04-10 21:02:36 +02:00
|
|
|
def.reject(err);
|
2017-04-06 12:21:33 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
post_request.on('error', function (e) {
|
2021-04-10 21:02:36 +02:00
|
|
|
// console.log(e);
|
|
|
|
// console.log("%j", postoptions);
|
|
|
|
def.reject(e);
|
2017-04-06 12:21:33 +02:00
|
|
|
});
|
|
|
|
|
2020-04-11 11:47:47 +02:00
|
|
|
post_request.on('timeout', function(){
|
|
|
|
post_request.abort();
|
2021-04-10 21:02:36 +02:00
|
|
|
def.reject("timeout");
|
2020-04-11 11:47:47 +02:00
|
|
|
});
|
|
|
|
|
2017-04-06 12:21:33 +02:00
|
|
|
post_request.write(getSocketState.body);
|
|
|
|
post_request.end();
|
|
|
|
|
|
|
|
return def.promise;
|
|
|
|
};
|
2016-04-09 18:59:36 +02:00
|
|
|
|
2021-01-29 17:28:04 +01:00
|
|
|
WeMoNG.prototype.getInsightParams = function getInsightParams(socket) {
|
|
|
|
var postoptions = {
|
|
|
|
host: socket.ip,
|
|
|
|
port: socket.port,
|
|
|
|
path: getInsightParameters.path,
|
|
|
|
method: getInsightParameters.method,
|
|
|
|
headers: {
|
|
|
|
'SOAPACTION': getInsightParameters.action,
|
|
|
|
'Content-Type': 'text/xml; charset="utf-8"',
|
|
|
|
'Accept': ''
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var def = Q.defer();
|
|
|
|
|
|
|
|
var post_request = http.request(postoptions, function(res){
|
|
|
|
var data = "";
|
|
|
|
res.setEncoding('utf8');
|
|
|
|
res.on('data', function(chunk){
|
|
|
|
data += chunk;
|
|
|
|
});
|
|
|
|
|
|
|
|
res.on('end', function(){
|
|
|
|
xml2js.parseString(data, function(err, result){
|
|
|
|
if (!err) {
|
|
|
|
var params = result["s:Envelope"]["s:Body"][0]["u:GetInsightParamsResponse"][0].InsightParams[0];
|
|
|
|
var msg = {};
|
|
|
|
addInsightParams(params, msg);
|
|
|
|
def.resolve(msg);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
post_request.on('error', function (e) {
|
2021-04-10 21:02:36 +02:00
|
|
|
// console.log(e);
|
|
|
|
// console.log("%j", postoptions);
|
|
|
|
def.reject(e);
|
2021-01-29 17:28:04 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
post_request.on('timeout', function(){
|
|
|
|
post_request.abort();
|
2021-04-10 21:02:36 +02:00
|
|
|
def.reject("timeout");
|
2021-01-29 17:28:04 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
post_request.write(getInsightParameters.body);
|
|
|
|
post_request.end();
|
|
|
|
|
|
|
|
return def.promise;
|
|
|
|
};
|
|
|
|
|
2017-04-06 12:21:33 +02:00
|
|
|
WeMoNG.prototype.getLightStatus = function getLightStatus(light) {
|
|
|
|
var postoptions = {
|
|
|
|
host: light.ip,
|
|
|
|
port: light.port,
|
|
|
|
path: getDevStatus.path,
|
|
|
|
method: getDevStatus.method,
|
|
|
|
headers: {
|
|
|
|
'SOAPACTION': getDevStatus.action,
|
|
|
|
'Content-Type': 'text/xml; charset="utf-8"',
|
|
|
|
'Accept': ''
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var def = Q.defer();
|
|
|
|
|
|
|
|
var post_request = http.request(postoptions, function(res){
|
|
|
|
var data = "";
|
|
|
|
res.setEncoding('utf8');
|
|
|
|
res.on('data', function(chunk) {
|
|
|
|
data += chunk;
|
|
|
|
});
|
|
|
|
|
|
|
|
res.on('end', function() {
|
|
|
|
xml2js.parseString(data, function(err, result){
|
|
|
|
if(!err) {
|
|
|
|
if (result["s:Envelope"]) {
|
|
|
|
var status = result["s:Envelope"]["s:Body"][0]["u:GetDeviceStatusResponse"][0].DeviceStatusList[0];
|
|
|
|
xml2js.parseString(status, function(err,result2){
|
|
|
|
if (!err) {
|
|
|
|
var available = result2['DeviceStatusList']['DeviceStatus'][0]['DeviceID'][0]['$'].available === 'YES';
|
|
|
|
var state = result2['DeviceStatusList']['DeviceStatus'][0]['CapabilityValue'][0];
|
|
|
|
var capabilities = result2['DeviceStatusList']['DeviceStatus'][0]['CapabilityID'][0];
|
|
|
|
var obj = {
|
|
|
|
available: available,
|
|
|
|
state: state,
|
|
|
|
capabilities: capabilities
|
|
|
|
};
|
|
|
|
def.resolve(obj);
|
|
|
|
} else {
|
2021-04-10 21:02:36 +02:00
|
|
|
def.reject(err);
|
|
|
|
// console.log("err");
|
2017-04-06 12:21:33 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} else {
|
2021-04-10 21:02:36 +02:00
|
|
|
// console.log("err");
|
|
|
|
def.reject(err);
|
2017-04-06 12:21:33 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
post_request.on('error', function (e) {
|
2021-04-10 21:02:36 +02:00
|
|
|
// console.log(e);
|
|
|
|
// console.log("%j", postoptions);
|
|
|
|
def.reject(e);
|
2017-04-06 12:21:33 +02:00
|
|
|
});
|
|
|
|
|
2020-04-11 11:47:47 +02:00
|
|
|
post_request.on('timeout', function () {
|
2021-04-10 21:02:36 +02:00
|
|
|
// console.log("Timeout");
|
|
|
|
post_request.abort("timeout");
|
2020-02-19 13:21:44 +01:00
|
|
|
def.reject();
|
|
|
|
});
|
|
|
|
|
2017-04-06 12:21:33 +02:00
|
|
|
post_request.write(util.format(getDevStatus.body, light.id));
|
|
|
|
post_request.end();
|
|
|
|
|
|
|
|
return def.promise;
|
|
|
|
}
|
|
|
|
|
|
|
|
WeMoNG.prototype.setStatus = function setStatus(light, capability, value) {
|
2016-04-09 18:59:36 +02:00
|
|
|
var postoptions = {
|
|
|
|
host: light.ip,
|
|
|
|
port: light.port,
|
|
|
|
path: setdevstatus.path,
|
|
|
|
method: 'POST',
|
|
|
|
headers: {
|
|
|
|
'SOAPACTION': setdevstatus.action,
|
2017-04-06 12:21:33 +02:00
|
|
|
'Content-Type': 'text/xml; charset="utf-8"',
|
2016-04-09 18:59:36 +02:00
|
|
|
'Accept': ''
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var post_request = http.request(postoptions, function(res) {
|
|
|
|
var data = "";
|
|
|
|
res.setEncoding('utf8');
|
|
|
|
res.on('data', function(chunk) {
|
|
|
|
data += chunk;
|
|
|
|
});
|
|
|
|
|
|
|
|
res.on('end', function() {
|
|
|
|
//console.log(data);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
post_request.on('error', function (e) {
|
2021-04-10 21:02:36 +02:00
|
|
|
// console.log(e);
|
|
|
|
// console.log("%j", postoptions);
|
2016-04-09 18:59:36 +02:00
|
|
|
});
|
|
|
|
|
2020-04-11 11:47:47 +02:00
|
|
|
post_request.on('timeout', function () {
|
2021-04-10 21:02:36 +02:00
|
|
|
// console.log("Timeout");
|
2020-04-11 11:47:47 +02:00
|
|
|
post_request.abort();
|
2020-02-19 13:21:44 +01:00
|
|
|
});
|
|
|
|
|
2016-04-09 18:59:36 +02:00
|
|
|
//console.log(util.format(setdevstatus.body, light.id, capability, value));
|
|
|
|
|
2017-04-06 12:21:33 +02:00
|
|
|
post_request.write(util.format(setdevstatus.body, light.type === 'light'?'NO':'YES',light.id, capability, value));
|
2016-04-09 18:59:36 +02:00
|
|
|
post_request.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
//need to promisify this so it returns
|
|
|
|
WeMoNG.prototype.parseEvent = function parseEvent(evt) {
|
|
|
|
var msg = {};
|
|
|
|
msg.raw = evt;
|
|
|
|
|
|
|
|
var def = Q.defer();
|
|
|
|
|
|
|
|
xml2js.parseString(evt, function(err, res){
|
|
|
|
if (!err) {
|
|
|
|
var prop = res['e:propertyset']['e:property'][0];
|
|
|
|
if (prop.hasOwnProperty('StatusChange')) {
|
|
|
|
xml2js.parseString(prop['StatusChange'][0], function(err, res){
|
|
|
|
if (!err && res != null) {
|
|
|
|
msg.id = res['StateEvent']['DeviceID'][0]['_'];
|
|
|
|
msg.capability = res['StateEvent']['CapabilityId'][0];
|
2017-04-06 12:21:33 +02:00
|
|
|
msg.capabilityName = capabilityMap[msg.capability];
|
2016-04-09 18:59:36 +02:00
|
|
|
msg.value = res['StateEvent']['Value'][0];
|
|
|
|
def.resolve(msg);
|
2020-08-17 22:43:12 +02:00
|
|
|
} else {
|
2021-04-10 21:02:36 +02:00
|
|
|
def.reject(err);
|
2016-04-09 18:59:36 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
} else if (prop.hasOwnProperty('BinaryState')) {
|
|
|
|
msg.state = prop['BinaryState'][0];
|
|
|
|
if (msg.state.length > 1) {
|
2021-01-29 17:28:04 +01:00
|
|
|
// Add all the insight params to the msg
|
|
|
|
addInsightParams(msg.state, msg);
|
2016-04-09 18:59:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
def.resolve(msg);
|
|
|
|
} else {
|
|
|
|
console.log("unhandled wemo event type \n%s", util.inspect(prop, {depth:null}));
|
2020-04-11 11:47:47 +02:00
|
|
|
|
2016-04-09 18:59:36 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
//error
|
2021-04-10 21:02:36 +02:00
|
|
|
def.reject(err);
|
2016-04-09 18:59:36 +02:00
|
|
|
}
|
2016-11-06 21:26:19 +01:00
|
|
|
});
|
2016-04-09 18:59:36 +02:00
|
|
|
|
|
|
|
return def.promise;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Based on https://github.com/theycallmeswift/hue.js/blob/master/lib/helpers.js
|
|
|
|
// TODO: Needs to be tweaked for more accurate color representation
|
|
|
|
WeMoNG.prototype.rgb2xy = function rgb2xy(red, green, blue) {
|
|
|
|
var xyz;
|
|
|
|
var rgb = [red / 255, green / 255, blue / 255];
|
|
|
|
|
|
|
|
for (var i = 0; i < 3; i++) {
|
|
|
|
if (rgb[i] > 0.04045) {
|
|
|
|
rgb[i] = Math.pow(((rgb[i] + 0.055) / 1.055), 2.4);
|
|
|
|
} else {
|
|
|
|
rgb[i] /= 12.92;
|
|
|
|
}
|
|
|
|
rgb[i] = rgb[i] * 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
xyz = [
|
|
|
|
rgb[0] * 0.4124 + rgb[1] * 0.3576 + rgb[2] * 0.1805,
|
|
|
|
rgb[0] * 0.2126 + rgb[1] * 0.7152 + rgb[2] * 0.0722,
|
|
|
|
rgb[0] * 0.0193 + rgb[1] * 0.1192 + rgb[2] * 0.9505
|
|
|
|
];
|
|
|
|
|
|
|
|
return [
|
|
|
|
xyz[0] / (xyz[0] + xyz[1] + xyz[2]) * 65535,
|
|
|
|
xyz[1] / (xyz[0] + xyz[1] + xyz[2]) * 65535
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2017-04-06 12:21:33 +02:00
|
|
|
//http://stackoverflow.com/questions/22894498/philips-hue-convert-xy-from-api-to-hex-or-rgb
|
|
|
|
WeMoNG.prototype.xy2rgb = function xy2rgb(x,y,bri) {
|
|
|
|
z = 1.0 - x - y;
|
|
|
|
Y = bri / 255.0; // Brightness of lamp
|
|
|
|
X = (Y / y) * x;
|
|
|
|
Z = (Y / y) * z;
|
|
|
|
r = X * 1.612 - Y * 0.203 - Z * 0.302;
|
|
|
|
g = -X * 0.509 + Y * 1.412 + Z * 0.066;
|
|
|
|
b = X * 0.026 - Y * 0.072 + Z * 0.962;
|
|
|
|
r = r <= 0.0031308 ? 12.92 * r : (1.0 + 0.055) * Math.pow(r, (1.0 / 2.4)) - 0.055;
|
|
|
|
g = g <= 0.0031308 ? 12.92 * g : (1.0 + 0.055) * Math.pow(g, (1.0 / 2.4)) - 0.055;
|
|
|
|
b = b <= 0.0031308 ? 12.92 * b : (1.0 + 0.055) * Math.pow(b, (1.0 / 2.4)) - 0.055;
|
|
|
|
maxValue = Math.max(r,g,b);
|
|
|
|
r /= maxValue;
|
|
|
|
g /= maxValue;
|
|
|
|
b /= maxValue;
|
|
|
|
r = r * 255; if (r < 0) { r = 255 };
|
|
|
|
g = g * 255; if (g < 0) { g = 255 };
|
|
|
|
b = b * 255; if (b < 0) { b = 255 };
|
|
|
|
|
|
|
|
return [r,g,b];
|
|
|
|
};
|
|
|
|
|
Silence Listener leak warning (#229)
* Replacing the original wemo node with the wemo-ng node
* Added install instructions
* Fix name of wemo out node
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
* Adds proper url length detection
* fix up the extra line added in the merge
* Fix some jshint errors
More jshint fixes
fix jshint
last jshint fix
Fix last jshint error
load of tiny listing fixes, undef, unused, etc
fix slight wrinkle in new Wemo node
Fix wemo package name for npm.
Add contribution.md to node-red-nodes
to make it more obvious.
correct spelling in readme.md
revert .jshintrc
Added subtree and walker nodes. (#200)
Thanks @mikakaraila - very useful.
slight edits to snmp to pass jslint-ing
Bump underlying serial port nam version
correct BBB callback response to check exists
To Fix #198
* Adds proper url length detection
fix up the extra line added in the merge
* Added some more error checking in discovery
* Adds proper url length detection* fix up the extra line added in the merge
* Adds proper url length detection
* fix up the extra line added in the merge
Add line output mode for Daemon node
to address #202
Email rework (#195)
* Rework of Node-RED email nodes
tidy up email listing - no code changes
add latest email node dips
and update email node libs - bump version
update package version for nodes tests
add a few tests
geohash, smooth, base64, msgpack
correct path of source file
Thanks @Ltrlg
Fix typo in node-red-node-smooth (#205)
node-red-node-physical-web: Added msg.advertising = true/false to enable/disable advertising (#204)
* Added msg.advertising = true/false to enable/disable advertising
* Fixed comparison with bool
Don't use get_compass as it breaks get_orientation
add envelope to email node options
as part of node-red#875
Physical-web: Added status (found, updated and lost) as msg.topic (#206)
Added msg.advertising = true/false to enable/disable advertising
Added status (lost, updated, found) as msg.topic, if not already set
Added checkbox to allow duplicates or not.
* Re-added optional topic to avoid breaking compatibility
* Cleaner topic slection
add a v0.3 serial port to help with node5/6
let PI try to enable sensorTag access on install
Add cc and bcc options to email node
to close #209
updates to email node to better handle
different mail types. Still not great - but does the basics… To close
Better email node parsing (again)
Fix indent
fixed formating
* Fix heading in README.md
Fix node name in README.md
* Silences warnings about too many listeners
2016-08-17 10:11:37 +02:00
|
|
|
module.exports = WeMoNG;
|