0.10.2 • Published 3 years ago

node-red-contrib-node-lifx v0.10.2

Weekly downloads
12
License
Apache-2.0
Repository
github
Last release
3 years ago

LIFX nodes for Node-RED

A solution to control LIFX lights over local network using Node-RED that uses lifx-lan-client library for communicating with the lights.

This module provides input and output nodes for communicating with LIFX lights, the input node accepts multiple color format and automatically converts the values to the right format.

Features

  • Convert input arguments to light specific arguments
  • Trigger events for light changes
  • Self syncing, uses background polling to detect external changes to light
  • Display current state for light in Node-RED UI
  • Ability to set waveforms EXPERIMENTAL

Examples

Dashboard example config:

This is an example of how to control the light using the node-red-dashboard The split node can be used to get the on and bri payload from the light status message, and the join node to combine the topic and value to an JSON object.

UI example

Wakeup example config:

Simple example of using an inject node to trigger a wakeup light behavior every workday, the light transitions from off to on with 75% brightness over a duration of 30s.

Wakeup example

Hub Configuration

Hub config

Light Configuration

Light config

Input node

Lights can be controlled by sending message with a payload containing the new state.

Set power state

Simplified control by sending the following values as payload

ValueInfo
'on' or trueTurn light on
'off'or falseTurn light off
numeric valueTurn light on and set brightness (0-100%)

Set color

More advanced way to control the light is to send an object payload with one or more of the following properties set

PropertyInfo
onSet light state (true/false)
red, green and/or blueSet one or more color change for light (0-255)
hexSet color (#f49242)
hueSet color hue (0-360)
sat or saturationSet color saturation (0-100)
bri or brightnessSet light brightness (0-100%)
cr, mired or mirekSet Mired color temperature (153 - 500)
kelvinSet kelvin color temperature (2200-6500)
durationTransition time (ms)

Set waveform

Waveform is a way to create effect in lifx bulbs, like the breath effect in the LIFX App. Setting a wave form will be at the following JSON form.

{
  "isTransient": true,
  "color": { "hue": 0, "saturation": 65535, "brightness": 65535, "kelvin": 3500 },
  "period": 800,
  "cycles": 3,
  "skewRatio": 0,
  "waveform": "SINE"  // one of SAW, SINE, HALF_SINE, TRIANGLE, PULSE
}

Notice: to get the same behavior as with the LIFX app when modifying the color temperature you will need to manually set the saturation to zero. This is because a LIFX light can adjust temperature and color independent of each other, and I didn't want to limit the choices for the user.

Example: Sending the following to the light will turn it on and dim it upp to 77% over 10 seconds

{
  "payload": {
    "on": true, 
    "bri": 77,
    "duration": 10000
  }
}

Output node

Example output from change event

{
  "id": "d073d5015103",
  "info": {
    "id": "d073d5015103",
    "name": "LIFX Black",
    "address": "192.168.1.107", 
    "model": "Original 1000",
    "capability": ["temperature", "color"]
  },
  "payload": { 
    "on": true, 
    "reachable": true, 
    "bri": 57, 
    "hsv": [ 169, 37, 57 ], 
    "rgb": [ 91, 145, 135 ], 
    "hex": "5C9187", 
    "color": "cadetblue", 
    "kelvin": 2513, 
    "mired": 397
  },
  "state": {
    "on": true,
    "brightness": 57,
    "hue": 169,
    "saturation": 37,
    "kelvin": 2513
  },
  "event": "change",
  "_msgid": "cfd24df6.65934"
}

Using independently

This library can be used independent of Node-RED, the example/mqtt.js file contains a simple example using MQTT.js to enable control lights on/off status and brightness over MQTT.

The MQTT topic lights will contain a list of all currently detected lights. Specific light can be controlled by sending a message to the topics lights/<id>/on (boolean) or lights/<id>/brightness (number) with the new state.