Node-RED nodes to communicate with IKEA TRÅDFRI lights.
Two, really easy to use, nodes that will help you to:
Set state (on/off/brightness/color) on an IKEA TRÅDFRI device or group
Standard output
If msg.payload
is a a string (on/off) a device or group must have been defined in the node. If msg.payload
is an object any information will override defined attributes in the node.
The following attributes of the object are available:
tradfri_id
(Integer) - optional - Not needed if target has been specified in the nodetype
(String) - optional - ['group', 'device'] - specifies if the call is for a group or device. Not needed if target has been specified in the nodestate
(String) - ['on', 'off', 'toggle'] - specifies the state instructionbrightness
(Integer) - [0-254] - specifies the brightness of the instructioncolor
(String) - [hex color value, 'cool', 'normal', 'warm'] - color code (HEX - e.g. 'ffffff' or focus, cool, everyday, normal, relax, warm, cold sky, cool daylight, cool white, sunrise, warm white, warm glow, candlelight, warm amber, peach, dark peach, saturated red, pink, light pink, saturated pink, light purple, saturated purple, blue, light blue, lime, yellow)transitiontime
(Integer) - time in seconds to transition from one state to anotherExamples: msg.payload = 'on';
or msg.payload = { tradfri_id: 1234, type:'device', state: 'on', color: 'cool'}
Retrieves IKEA TRÅDFRI device information from your IKEA hub.
Standard output
If msg.payload
is a number the details of that device or group will be retrieved and returned in msg.payload as an object. If msg.payload
is not set or is not a number the complete structure will be retrieved from the defined IKEA Hub.
The Config
setting requires a number of parameters:
Security Code
- As found on the sticker on the bottom of the IKEA TRÅDFRI hubIP address
- The IP address of the IKEA TRÅDFRI hubCoAP path
- The file system path to the CoAP library that communicates with the IKEA TRÅDFRI hub. A set of precompiled versions of libcoap is available to choose from. If they don't work or you want to be sure to use the latest version, please follow the instructions to compile from the Github repo of libcoap.App Identity
- Automatically generated when requesting an preshared key - DTLS IdentityPreshared key
- This value will be generated by the IKEA hub once for each App Identity and needs to be stored. It is used when controlling the lights together with the App IdentityLook at node-tradfri-argon on instructions on how to get or compile the libcoap library. The executable will be in the [examples] directory when it has finished the compilation. E.g. /home/pi/libcoap/examples/coap-client