Search found 15 matches

by Rklootwijk
19 Sep 2015 11:13
Forum: Device specific
Topic: Fibaro FGMS-001 and setting temperature offset
Replies: 4
Views: 10506

Fibaro FGMS-001 and setting temperature offset

By default the z-way version 2.1.1 (Razberry) sets the temperature offset (parameter 66) to 64536 which means -100 degrees. When I change this to 0, it is send correctly to the device. However in the UI the value is changed to 64536 immediately again and the next time a configuration update is send,...
by Rklootwijk
09 Aug 2015 19:22
Forum: RaZberry
Topic: v2.0.1-rc37 Periodical Sensor Polling
Replies: 5
Views: 9203

Re: v2.0.1-rc37 Periodical Sensor Polling

The same for me with version v2.0.1
by Rklootwijk
18 Mar 2015 01:14
Forum: RaZberry
Topic: How to listen for changes in thermostat values
Replies: 0
Views: 2950

How to listen for changes in thermostat values

I created an automation module acting on events. I currently have listeners bound to the the following events: - change:metrics:level - created - removed However, I seem to miss some events, like changes in the temperature and setpoint of a thermostat. Do I need to add a listener for different events?
by Rklootwijk
21 Jan 2015 10:58
Forum: RaZberry
Topic: Automation module to forward events
Replies: 0
Views: 3659

Automation module to forward events

I created an automation module to forward events from ZWay to my own home automation software. Maybe it is of any use to anyone. You can find the code and a very brief description on GitHub: https://github.com/reneklootwijk/zway-eventforwarder
by Rklootwijk
13 Jan 2015 01:06
Forum: Discussions in English
Topic: Event for dead device
Replies: 7
Views: 9047

Re: Event for dead device

Yep got that already, thanks!
by Rklootwijk
12 Jan 2015 00:36
Forum: Discussions in English
Topic: Access to sensortype in automation module
Replies: 2
Views: 4794

Re: Access to sensortype in automation module

I got this solved as follows: global.zway.devices[nodeId].instances[instanceId].commandClasses[commandclass].data[scaleId].sensorType.value
by Rklootwijk
12 Jan 2015 00:34
Forum: Discussions in English
Topic: Event for dead device
Replies: 7
Views: 9047

Re: Event for dead device

OK, got this working. However only the isFailed object is passed to the handler. How do I find out to which device this event belongs? I am creating an automation module to integratie the razberry with my home automation software and want to indicate when a device goes offline.
by Rklootwijk
10 Jan 2015 18:58
Forum: Discussions in English
Topic: Why is metric update triggered twice
Replies: 9
Views: 11101

Re: Why is metric update triggered twice

The row id of all rows in the sensor and meter views is wrong. It is Meter_undefined_x where x is the nodeId. In htdocs/expert/app/controllers/controllers.js the rowId is calculated as follows: meters.name + '_' + meter.name + '_' + k. However meter.name does not exist.