Library to talk to IKEA Trådfri Gateways without external binaries
Requires NodeJS >= 6.x
import { TradfriClient, Accessory, AccessoryTypes } from "node-tradfri-client";
// connect
const tradfri = new TradfriClient("gw-abcdef012345");
await tradfri.connect(identity, psk);
// observe devices
tradfri
.on("device updated", tradfri_deviceUpdated)
.on("device removed", tradfri_deviceRemoved)
.observeDevices()
;
const lightbulbs = {};
function tradfri_deviceUpdated(device: Accessory) {
if (device.type === AccessoryTypes.lightbulb) {
// remember it
lightbulbs[device.instanceId] = device;
}
}
function tradfri_deviceRemoved(instanceId: number) {
// clean up
}
// later...
// at least after we have actually received the light object
const light = lightbulbs[65537].lightList[0];
// blink
setTimeout(() => light.toggle(), 0);
setTimeout(() => light.toggle(), 1000);
setTimeout(() => light.toggle(), 2000);
setTimeout(() => light.toggle(), 3000);
// even later...
// before shutting down the app
tradfri.destroy();
// observe devices
tradfri
.on("group updated", tradfri_groupUpdated)
.observeGroupsAndScenes()
;
const groups = {};
function tradfri_groupUpdated(group: Group) {
// remember it
groups[group.instanceId] = group;
}
// later...
// at least after we have actually received the group object
const group = groups[123456];
group.name = "new name";
await tradfri.updateGroup(group);
// even later...
// before shutting down the app
tradfri.destroy();
const tradfriLib = require("node-tradfri-client");
const TradfriClient = tradfriLib.TradfriClient;
// or with the new import syntax
import { TradfriClient /*, more imports */ } from "node-tradfri-client";
const tradfri = new TradfriClient(
hostname: string,
[customLogger: LoggerFunction]
);
By providing a custom logger function to the constructor, all diagnostic output will be sent to that function. By default, the debug
module is used instead. The logger function has the following signature:
type LoggerFunction = (
message: string,
[severity: "info" | "warn" | "debug" | "error" | "silly"]
) => void;
The following code samples use the new async/await
syntax which is available through TypeScript/Babel or in ES7. If that is no option for you, you can also consume the library by using promises:
try {
const result = await asyncMethod(securityCode);
} catch (e) {
// handle error
}
is equal to
asyncMethod(securityCode)
.then((result) => {
// work with the result
})
.catch((e) => {
// handle error
})
;
As of firmware version 1.2.42, the Trådfri Gateway requires generation of a unique identity before serving any requests. This step is not necessary if you already have a valid identity/psk pair.
To do so, call the authenticate
method with the security code printed on the gateway:
try {
const {identity, psk} = await tradfri.authenticate(securityCode);
// store identity and psk
} catch (e) {
// handle error
}
The returned identity
and psk
have to be stored for future connections to the gateway. To comply with IKEA's requests, the security code must not be stored permanently in your application.
The call throws an error if it wasn't successful which you should handle. The error e
should be of type TradfriError
and gives further information why the authentication failed. To check that, add TradfriError
and TradfriErrorCodes
to the list of imports and check as follows:
if (e instanceof TradfriError) {
switch (e.code) {
case TradfriErrorCodes.ConnectionFailed: {
// Gateway unreachable or security code wrong
}
case TradfriErrorCodes.AuthenticationFailed: {
// Something went wrong with the authentication.
// It might be that this library has to be updated to be compatible with a new firmware.
}
}
}
When you have a valid identity and psk, you can connect to the gateway using the connect
method:
const success = await tradfri.connect(identity, psk);
If the connection was unsuccessful, either the gateway was unreachable or the identity/psk pair isn't valid.
const success = await tradfri.ping(
[timeout: number]
);
Check the reachability of the gateway using inexpensive CoAP pings. The optional timeout
parameter sets the time in ms (default: 5000) after which the ping fails. This is only possible after an initial connection to the gateway.
tradfri.reset();
After a connection loss or reboot of another endpoint, the currently active connection params might no longer be valid. In this case, use the reset method to invalidate the stored connection params, so the next request will use a fresh connection.
This causes all requests to be dropped and clears all observations.
tradfri.destroy();
Call this before shutting down your application so the gateway may clean up its resources.
The TradfriClient
notifies registered listeners when observed resources are updated or removed. It is using the standard EventEmitter
interface, so you can add listeners with on("event", handler)
and remove them with removeListener
and removeAllListeners
.
The currently supported events and their handler signatures are:
type DeviceUpdatedCallback = (device: Accessory) => void;
type DeviceRemovedCallback = (instanceId: number) => void;
type GroupUpdatedCallback = (group: Group) => void;
type GroupRemovedCallback = (instanceId: number) => void;
type SceneUpdatedCallback = (groupId: number, scene: Scene) => void;
type SceneRemovedCallback = (groupId: number, instanceId: number) => void;
type ErrorCallback = (e: Error) => void;
This doesn't have to be fatal and can be called when an unexpected response code is received.
The standard way to receive updates to a Trådfri (or CoAP) resource is by observing it. The TradfriClient provides a couple of methods to observe resources, with the most generic one being
const success = await tradfri.observeResource(
path: string,
callback: (resp: CoapResponse) => void
);
The path
argument determines which endpoint should be observed, e.g. "15001"
for the list of devices. The callback is called for every response or update of the gateway. The method returns true
if a new observer was set up, and false
otherwise. If no new observer was set up, the provided callback will not be called.
To stop observing the resource and no longer receive updates, call
tradfri.stopObservingResource(path: string): void;
with the same path you used to setup the observer.
For a more detailed explanation of the CoapResponse
object, please refer to the node-coap-client documentation.
NOTE: Prefer to use the specialized observer methods below whereever posible.
By calling (or awaiting)
tradfri.observeDevices(): Promise<void>;
you can set up an observer for all devices on the gateway. The callbacks registered with on("device updated")
and on("device removed")
will now be called for updates.
Calling stopObservingDevices()
stops the observation of devices and the callbacks will no longer be invoked.
By calling (or awaiting)
tradfri.observeGroupsAndScenes(): Promise<void>;
you can set up an observer for all groups and their scenes, which will call the callbacks for "group updated"
, "group removed"
, "scene updated"
and "scene removed"
on updates. Stopping this observer is possible by calling stopObservingGroups()
.
You can change properties of a device on the gateway (e.g. rename it) by calling
const requestSent = await tradfri.updateDevice(accessory: Accessory);
If the accessory object is not changed in comparison to the one on the gateway, no request will be sent and the return value will be false
. The usage of this method requires that the devices are already being observed.
NOTE: To switch a light on/off or to change its properties, prefer the operateLight
method or the specialized methods defined on the lightbulb itself.
const requestSent = await tradfri.operateLight(accessory: Accessory, operation: LightOperation);
The parameter accessory
is the device containing the lightbulb. The operation
object contains the properties to be updated, e.g.
{
onOff: value,
transitionTime: 5,
}
Similar to updating devices, you can update groups by calling
const requestSent = await tradfri.updateGroup(group: Group);
NOTE: To switch all lights in a group or to change their properties, prefer the operateGroup
method.
const requestSent = await tradfri.operateGroup(group: Group, operation: GroupOperation);
It is similar to the operateLight
method, see the chapter "Data structures" below for a complete list of all properties.
For all one-time requests currently not possible through specialized methods, you can use
const response = await tradfri.request(
path: string,
method: "get" | "post" | "put" | "delete",
[payload: object]
);
The path
is the CoAP endpoint to be requested, the payload (if provided) must be a valid CoAP payload in JSON form. Upon completion, the promise resolved with a response object of the following form
{
code: string,
payload: string | object,
}
where the code is the string representation of one of the defined CoAP message codes and the payload is either a string or a JSON object.
An Accessory is a generic device connected to the gateway. It can have several sub-devices, such as
Light
Sensor
Plug
Switch
(no known devices exist) although all currently known devices only have a single sub-device.
The properties available on an Accessory
are:
name: string
- The name of this accessory as displayed in the app. Defaults to the model name.createdAt: number
- The unix timestamp of the creation of the device. Unknown what this is exactly.instanceId: number
- The ID under which the accessory is known to the gateway. Is used in callbacks throughout the library.type: AccessoryTypes
- The type of the accessory:remote (0)
,lightbulb (2)
ormotionSensor (4)
. Currently only lightbulbs contain meaningful information.deviceInfo: DeviceInfo
- Some additional information about the device in form of aDeviceInfo
object (see below)alive: boolean
- Whether the gateway considers this device as alive.lastSeen: number
- The unix timestamp of the last communication with the gateway.lightList: Light[]
- An array of all lights belonging to this accessory.plugList: Plug[]
- An array of all plugs belonging to this accessory.sensorList: Sensor[]
- An array of all sensors belonging to this accessory.switchList: any[]
- An array of all switches belonging to this accessory. Unsupported atm.otaUpdateState: number
- Unknown. Might be a boolean
A light represents a single lightbulb and has several properties describing its state. The supported properties depend on the spectrum of the lightbulb. All of them support the most basic properties:
dimmer: number
- The brightness in percent [0..100%]onOff: boolean
- If the lightbulb is on (true
) or off (false
)transitionTime: number
- The duration of state changes in seconds. Default 0.5s, not supported for on/off.
as well as a few readonly properties:
isSwitchable: boolean
- Whether the lightbulb supports on/off.isDimmable: boolean
- Whether the lightbulb supports setting the brightness.spectrum: "none" | "white" | "rgb"
- The supported color spectrum of the lightbulb.
White spectrum lightbulbs also support
colorTemperature: number
- The color temperature in percent, where 0% equals cold white and 100% equals warm white.
RGB lightbulbs have the following properties:
color: string
- The 6 digit hex number representing the lightbulb's color. Don't use any prefixes like "#", only the hex number itself!hue: number
- The color's hue [0..360°]saturation: number
- The color's saturation [0..100%]
The additional properties are either for internal use (colorX
/colorY
) or not supported by the gateway. So don't use them!
If the light object was returned from a library function and not created by you, the following methods are available to change its appearance directly. You can await them to make sure the commands were sent or just fire-and-forget them. The returned Promises resolve to true if a command was sent, otherwise to false.
turnOn()
- Turns the light on.turnOff()
- Turns the light off.toggle([value: boolean])
- Toggles the light's state to the given value or the opposite of its current state.setBrightness(value: number [, transitionTime: number])
- Dims the light to the given brightness.setColorTemperature(value: string [, transitionTime: number])
- Changes a white spectrum lightbulb's color temperature to the given value.setColor(value: string [, transitionTime: number])
- Changes an RGB lightbulb's hex color to the given value. May also be use for white spectrum bulbs to target one of the predefined colorsf5faf6
(cold),f1e0b5
(normal) andefd275
(warm).setHue(value: number [, transitionTime: number])
- Changes an RGB lightbulb's hue to the given value.setSaturation(value: number [, transitionTime: number])
- Changes an RGB lightbulb's saturation to the given value.
For the methods accepting a transitionTime, you can specify an optional transition time or use the default of 0.5s.
A LightOperation is an object containing at least one of a Light
's properties, which are:
{
onOff: boolean;
dimmer: number;
transitionTime: number;
colorTemperature: number;
color: string;
hue: number;
saturation: number;
}
or a subset thereof.
A group contains several devices, usually a remote control or dimmer and some lightbulbs. To control the group's lightbulbs, use the following properties:
onOff: boolean
- Turn the group's lightbulbs on (true
) or off (false
)dimmer: number
- Set the brightness of the group's lightbulbs in percent [0..100%]transitionTime: number
- The duration of state changes in seconds. Not supported for on/off. In contrast to controlling lightbulbs, the default transition time for groups is 0s (no transition).
Note: The Trådfri gateway does not update those values when lights change, so they should be considered write-only.
Additionally, these properties are also supported:
sceneId: number
- Set this to theinstanceId
of a scene (or "mood" as IKEA calls them), to activate it.deviceIDs: number[]
- A readonly array of allinstanceId
s of the devices in this group.
Similar to lightbulbs, groups provide the following methods if they were returned from a library function. You can await them to make sure the commands were sent or just fire-and-forget them. The returned Promises resolve to true if a command was sent, otherwise to false.
turnOn()
- Turns all lights on.turnOff()
- Turns all lights off.toggle(value: boolean)
- Sets all lights' state to the given value.setBrightness(value: number [, transitionTime: number])
- Dims all lights to the given brightness.
A GroupOperation is an object containing at least one of a Group
's controllable properties, which are:
{
onOff: boolean;
dimmer: number;
transitionTime: number;
sceneId: number;
}
or a subset thereof.
A DeviceInfo object contains general information about a device. It has the following properties:
battery: number
- The battery percentage of a device. Only present if the device is battery-powered.firmwareVersion: string
- The firmware version of the devicemanufacturer: string
- The device manufacturer. Usually"IKEA of Sweden"
.modelNumber: string
- The name/type of the device, e.g."TRADFRI bulb E27 CWS opal 600lm"
power: PowerSources
- How the device is powered. One of the following enum values:Unknown (0)
InternalBattery (1)
ExternalBattery (2)
Battery (3)
- Although not in the specs, this is apparently used by the remotePowerOverEthernet (4)
USB (5)
AC_Power (6)
Solar (7)
serialNumber: string
- Not used currently. Always""
- (AlCalzone) Allow calling
setColor()
for white spectrum bulbs withf5faf6
,f1e0b5
andefd275
- (AlCalzone) Fixed a bug where the simplified light API would not always send the correct payloads.
- (AlCalzone) Fixed some checks in the simplified API for lights
- (AlCalzone) The promises returned by
observeDevices
andobserveGroupsAndScenes
now only resolve after all devices or groups and scenes have been received
- (AlCalzone) Simplified operating groups
- (AlCalzone) Reworked the observe api so it resides on TradfriClient now
- (AlCalzone) Simplified operating lights
- (AlCalzone) Changed authentication procedure to comply with IKEA's request
- (AlCalzone) Round brightness up, so that 1 => 1%, not 0%
- (AlCalzone) first working release
The MIT License (MIT)
Copyright (c) 2017 AlCalzone [email protected]
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.