Posts Tagged ‘Zensys’

Device discovery in Z-Wave

January 7th, 2010 | Edit

It is possible to request a list of connected devices from the Z-Wave controller. This article will take a look at the requests and responses related to device discovery in Z-Wave.
The article is part of a series of articles with focus on the Z-Wave protocol and how to implement it in C#. Reading the previous articles will be an advantage, but it is not mandatory.

It is possible to have 232 Z-Wave devices in one network. Each device is identified by a node id. A number of common attributes are defined for the devices e.g. type. The Z-Wave protocol defines numerous device types but only the Controller, Switch and Dimmer will be addressed in this article.
It is relatively straight forward to identify the devices in the Z-Wave network handled by the Z-Wave controller.

  1. Ask the Z-Wave controller about the registered node ids
  2. Ask the Z-Wave controller about the type linked to each of the node ids

» Read more: Device discovery in Z-Wave

An introduction to Z-Wave programming in C#

November 30th, 2009 | Edit

Z-Wave is a protocol for wireless communication with home appliances e.g. lamps and sensors. Z-Wave can be used for switching on, switching off, monitoring etc.
It is possible to learn more about Z-Wave by reading one of the previous articles (in Danish) on this site or at Z-Waves.dk.

zwaves-logo-new2

It is easy to get started with Z-Wave programming. One important note here is that the specifications aren’t publicly available. The example in this article can be used for switching a lamp on or off.

» Read more: An introduction to Z-Wave programming in C#