npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-red-contrib-tradfri

v1.2.0

Published

Node-RED nodes to read and control IKEA TRÅDFRI (TRADFRI) lights

Downloads

82

Readme

node-red-contrib-tradfri

Node-RED nodes to communicate with IKEA TRÅDFRI lights. npm version

Two, really easy to use, nodes that will help you to:

  • Get information on all devices and or groups
  • Set the state - on/off - on devices or groups
  • Set the brightness on devices or groups
  • Set the color on devices

IKEA TRÅDFRI devices

Documentation

tradfri-out node

Set state (on/off/brightness) on an IKEA TRÅDFRI device or group

Inputs

Outputs

  1. Standard output

Details

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 node
  • type (String) - optional - ['group', 'device'] - specifies if the call is for a group or device. Not needed if target has been specified in the node
  • state (String) - ['on', 'off', 'toggle'] - specifies the state instruction
  • brightness (Integer) - [0-255] - specifies the brightness of the instruction
  • color (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 another

Examples: msg.payload = 'on'; or msg.payload = { tradfri_id: 1234, type:'device', state: 'on', color: 'cool'}

DEPRECATED: msg.payload.instruction variable is deprecated from v1.0.5 ~~{ tradfri_id: 12321, type: "group", instruction: { state: "on", brightness: 255}} where tradfri_id, type ('device' or 'group') and brightness are optional parameters (depending on the node configuration)~~

tradfri-get node

Retrieves IKEA TRÅDFRI device information from your IKEA hub.

Inputs

Outputs

  1. Standard output

Details

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.

tradfri configuration node

The Config setting requires a number of parameters:

  • Security Code - As found on the sticker on the bottom of the IKEA TRÅDFRI hub
  • IP address - The IP address of the IKEA TRÅDFRI hub
  • CoAP 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 - Define a unique string - DTLS Identity - to be used for generatring the preshared key to be used to control the devices
  • Preshared 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 Identity

Look 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