Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some bulbs not offered by server, though node-lifx finds them #7

Closed
bland328 opened this issue Jan 17, 2018 · 8 comments
Closed

Some bulbs not offered by server, though node-lifx finds them #7

bland328 opened this issue Jan 17, 2018 · 8 comments

Comments

@bland328
Copy link

bland328 commented Jan 17, 2018

tl;dr: node-red-contrib-node-lifx works with my older LIFX bulbs, but not my newer LIFX bulbs.

I have seven (7) LIFX bulbs on my network:

  • One (1) LIFX A19
  • Two (2) LIFX Color 1000
  • Two (2) LIFX+ A19
  • Two (2) LIFX+ BR30

All bulbs are updated to the latest firmware, and I'm using the latest Node-RED v0.17.5 and node-red-contrib-node-lifx 0.9.1.

Using node-red-contrib-node-lifx, when I create just one node-lifx-out node and configure an Lifx Server for it, I'm leaving all fields at default values (Address, Broadcast and Lights all blank, Poll interval of 10000 and Name of "Lifx Server").

When I then click the Search button next to the Light ID field in the Edit node-lifx-out node panel, the dropdown is consistently populated (even after rebooting) with just three (3) bulbs:

  • Both (2) LIFX Color 1000
  • The one (1) LIFX A19

As a test, I stopped Node-RED and tried interactive-cli.js in the ~/.node-red/node_modules/node-red-contrib-node-lifx/node_modules/node-lifx/example/ directory; it found all seven (7) bulbs immediately, and was able to control all of them.

I do notice that it is my three oldest, non-"plus" bulbs that are working, but since node-lifx 0.8.0 supports all of my bulbs, I would think node-red-contrib-node-lifx would, too.

Or is it expected that node-red-contrib-node-lifx doesn't yet support these bulbs?

@ristomatti
Copy link

@bland328 I have done a bunch of tweaks to both node-lifx and node-red-contrib-node-lifx to improve the reliability/performance on my own branches. Out curiosity, would you like to try if it makes any difference if you try the version I'm currently using? It combines modifications I've done to both modules. You can do it by the following steps:

  1. Uninstall the current version
  2. Stop Node-RED if running
  3. In ~/.node-red run npm install github:ristomatti/node-red-contrib-node-lifx#development

The node-lifx version I have as a dependency for node-red-contrib-node-lifx requires a postinstall script to be run which I remember having issues on some Node version. The version I am running is 8.9.x.

I won't be able to solve the issue as such but maybe this might be of some help debugging the problem.

@jdomeij
Copy link
Owner

jdomeij commented Jan 21, 2018

@bland328 Can you provide the output from the code below, the problem is probably in the capability scanning code

'use strict';

var Lifx = require('node-lifx').Client;
var client = new Lifx();

client.on('error', function(err) {
  console.log('LIFX error:\n' + err.stack);
  client.destroy();
});

client.on('light-new', function(light) {
  light.getHardwareVersion((err, data) => {    
    console.log('getHardwareVersion', light.id, err ? err.message : data);
  });

  light.getMaxIR((err, data) => {
    console.log('getMaxIR', light.id, err ? err.message : data);
  });

  light.getState((err, data) => {
    console.log('getState', light.id, err ? err.message : data);
  })
});


client.on('listening', function() {
  var address = client.address();
  console.log(
    'Started LIFX listening on ' +
    address.address + ':' + address.port + '\n'
  );
});

client.init({
  //broadcast: "192.168.1.255",
  messageHandlerTimeout: 1000,
  //debug: true,
});

@bland328
Copy link
Author

bland328 commented Jan 21, 2018

@ristomatti, thanks very much for the idea and assistance. I'll give it a try soon and share the results.

@jdomeij, thanks for the code! Here's the results, with some light censoring, due to paranoia ;)

Started LIFX listening on 0.0.0.0:56700

getHardwareVersion d0xxxxxxxx8f { vendorId: 1,
  productId: 22,
  version: 0,
  vendorName: 'LIFX',
  productName: 'Color 1000',
  productFeatures: { color: true, infrared: false, multizone: false } }
getState d073d511bc8f { color: { hue: 1, saturation: 98, brightness: 100, kelvin: 2500 },
  power: 0,
  label: 'BRR' }
getHardwareVersion d0xxxxxxxxab { vendorId: 1,
  productId: 29,
  version: 0,
  vendorName: 'LIFX',
  productName: 'LIFX+ A19',
  productFeatures: { color: true, infrared: true, multizone: false } }
getHardwareVersion d0xxxxxxxxd0 { vendorId: 1,
  productId: 22,
  version: 0,
  vendorName: 'LIFX',
  productName: 'Color 1000',
  productFeatures: { color: true, infrared: false, multizone: false } }
getState d0xxxxxxxxab { color: { hue: 320, saturation: 26, brightness: 100, kelvin: 3500 },
  power: 0,
  label: MBR' }
getState d0xxxxxxxxd0 { color: { hue: 1, saturation: 98, brightness: 100, kelvin: 2500 },
  power: 0,
  label: 'BRL' }
getHardwareVersion d0xxxxxxxx5b { vendorId: 1,
  productId: 30,
  version: 0,
  vendorName: 'LIFX',
  productName: 'LIFX+ BR30',
  productFeatures: { color: true, infrared: true, multizone: false } }
getMaxIR d0xxxxxxxx8f No LIFX response in time
getMaxIR d0xxxxxxxxd0 No LIFX response in time
getMaxIR d0xxxxxxxxab No LIFX response in time
getState d0xxxxxxxx5b { color: { hue: 319, saturation: 0, brightness: 100, kelvin: 2500 },
  power: 0,
  label: 'MBT' }
getMaxIR d0xxxxxxxx84 No LIFX response in time
getHardwareVersion d0xxxxxxxxea No LIFX response in time
getState d0xxxxxxxxea No LIFX response in time
getMaxIR d0xxxxxxxx35 No LIFX response in time
getMaxIR d0xxxxxxxx5b No LIFX response in time
getState d0xxxxxxxx84 No LIFX response in time
getHardwareVersion d0xxxxxxxx35 No LIFX response in time
getHardwareVersion d0xxxxxxxx84 No LIFX response in time
getState d0xxxxxxxx35 No LIFX response in time
getMaxIR d0xxxxxxxxea No LIFX response in time

@bland328
Copy link
Author

bland328 commented Jan 22, 2018

@jdomeij, I also noticed when restarting Node-RED just now, this console output:

21 Jan 17:30:17 - [error] [node-lifx-server:Lifx Server] No LIFX response in time
21 Jan 17:30:18 - [error] [node-lifx-server:Lifx Server] No LIFX response in time
21 Jan 17:30:18 - [error] [node-lifx-server:Lifx Server] No LIFX response in time
21 Jan 17:30:20 - [error] [node-lifx-server:Lifx Server] No LIFX response in time

Interestingly, @ristomatti reported such behavior at MariusRumpf/node-lifx#55, but as I mentioned in my original post, when I use the node-lifx interactive-cli.js utility, it communicates fine with all my bulbs, meaning that node-lifx does have the ability to communicate with all my bulbs, at least under particular circumstances. Edit: I see that getMaxIR isn't called by that code, since it doesn't investigate the available bulbs all that deeply.

@ristomatti
Copy link

ristomatti commented Jan 22, 2018

@bland328 so did I understand correctly, the bulbs started working with my version of the code? Now that you reported the same on node-lifx repo, I remember having similar issues. I actually even have a PR open to fix a problem related to IR bulbs. It's been open since May.

I believe the console output you're seeing is from node-lifx and is printed when a light does not respond to a query for info or state. I don't remember if node-red-contrib-node-lifx was even using the information for anything(?). But if the lights work you can ignore the error.

Unfortunately I don't have the bulbs you've mentioned to test but based on the product name I assume the bulbs not being detected are IR bulbs?

@jdomeij
Copy link
Owner

jdomeij commented Jan 22, 2018

@bland328 Yoo, i have published an new version on npm that should fix the problem. The problem is like @ristomatti says is in the getMaxIR function that returns an error.

The IR capability has been added blindly because I only have the original Lifx lights, the fix I made is to skip using the getMaxIR if it returns error during initialization, you can still set the IR level but there will be no poll updates to the IR level.

@bland328
Copy link
Author

@ristomatti, I did not get to try your code because of an unresolved battle between the postinstall script and my version of npm, I'm sorry to report. And, to answer your IR question--yes, all of my problematic bulbs are IR-capable.

@jdomeij, that makes perfect sense to me. And I can confirm that the configuration node now offers all of my bulbs, and I did see on/off status flowing in from one of the IR-capable bulbs that was formerly missing! I don't have time to test further at the moment, but I assume this closed for my purposes. Thanks very, very much!

@ristomatti
Copy link

@bland328 the postinstall script issue you're having I've also encountered with some npm version. The postinstall script was a quick hack for my own use to get my custom version of node-lifx to build when it's fetched as a GitHub dependency. The issue is not related to either node-red-contrib-node-lifx or node-lifx.

But anyhow - great this was addressed by @jdomeij and the issue is gone!

@jdomeij jdomeij closed this as completed Jan 24, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants