Search found 19 matches

by elvizgz
06 May 2015 13:15
Forum: Discussions in English
Topic: Wrong checksum. Sent NACK
Replies: 0
Views: 2539

Wrong checksum. Sent NACK

This morning my system wasn't working. In z-way-server.log I only saw: [2015-05-06 06:30:04.428] [D] [zway] Job 0x13 (SensorMultilevel V5 Get): removing duplicate [2015-05-06 06:30:04.428] [D] [zway] Job 0x13 (SensorMultilevel V5 Get): removing duplicate [2015-05-06 06:30:04.474] [D] [zway] Job 0x13...
by elvizgz
06 May 2015 12:50
Forum: Discussions in English
Topic: Issue with randomly dead nodes
Replies: 8
Views: 14768

Re: Issue with randomly dead nodes

I'm having the same problem as well with AEON Gen5 Multisensors. In my installation I've got x3 AEON Gen5 Multisensors and x1 AEON Gen4 Multisensor. The Gen4 doesn't fail but Gen5 ones do it a lot. I'm doing data polling every 5 minutes and seems to be when sensors fail. I have as well an Aeotec Ran...
by elvizgz
06 May 2015 11:40
Forum: Discussions in English
Topic: Command Class Not Implemented
Replies: 4
Views: 6478

Re: Command Class Not Implemented

I've experimented today the same problem: 2015-05-05 23:25:14.640] [I] [zway] Got frame from device 11 to controller, but command class 0x7d is not implemented [2015-05-05 23:25:14.640] [D] [zway] SETDATA devices.11.data.lastReceived = 0 (0x00000000) [2015-05-05 23:25:14.650] [D] [zway] RECEIVED: ( ...
by elvizgz
21 Apr 2015 20:15
Forum: Discussions in English
Topic: How to set up scenes
Replies: 1
Views: 3371

Re: How to set up scenes

I found a way to ensure that the virtual device is always present. SwitchControlGenerator module checks global.ZWave in order to add virtual devices. global.ZWave is instantiated in ZWave binding module. The problem is that on init, the order or loading active modules is not always the same. So if S...
by elvizgz
21 Apr 2015 10:43
Forum: Device specific
Topic: Multi Sensor Gen5 Zw074-C AEOTEC
Replies: 4
Views: 7379

Re: Multi Sensor Gen5 Zw074-C AEOTEC

Do you see anything sent in z-way-server.log when movement is detected? With param 5 set to 1 you should see basic command class sent. Check that you have param 4 set to 1 (1 byte) to enable motion sensor (probably you've already done this). For me it's a lottery that motion sensor works. I have man...
by elvizgz
17 Apr 2015 18:00
Forum: Discussions in English
Topic: How to set up scenes
Replies: 1
Views: 3371

How to set up scenes

Hello! First of all, I would like to know how to set up a scene. I have a remote control device (Aeon Panic Button) that activates a scene when pressed. In my situation, I need to execute an external script when button is pressed so I did the following in home automation: * Activate module SwitchCon...
by elvizgz
26 Mar 2015 16:02
Forum: RaZberry
Topic: Access ZWaveAPI from userModule
Replies: 4
Views: 5166

Re: Access ZWaveAPI from userModule

Impossible is nothing! 8-) There is no option to change behaviour with configuration class. Just switch between send Sensor_binary report or alarm report. I don't know if I have change anything but now I can access http://127.0.0.1:8083/ZWaveAPI/Run/devices[6].instances[0].SensorBinary.data[1].level...
by elvizgz
26 Mar 2015 15:38
Forum: RaZberry
Topic: Correct way of processing an http.request response
Replies: 4
Views: 4808

Re: Correct way of processing an http.request response

Thanks pz1! I've already tried that: http.request({ method: 'GET', url: encodeURI(myURL), success: function (response) { console.log("Success!"); }, error: function () { console.log("ERROR!!"); } }); I couldn't see the console.log output in z-way-server.log so I thought it wasn't...
by elvizgz
26 Mar 2015 15:22
Forum: RaZberry
Topic: Access ZWaveAPI from userModule
Replies: 4
Views: 5166

Re: Access ZWaveAPI from userModule

No, it's not possible. The device doesn't support Switch Binary command class. Just these: class: 0x30 COMMAND_CLASS_SENSOR_BINARY class: 0x85 COMMAND_CLASS_ASSOCIATION class: 0x84 COMMAND_CLASS_WAKE_UP class: 0x86 COMMAND_CLASS_VERSION class: 0x72 COMMAND_CLASS_MANUFACTURER_SPECIFIC class: 0x70 COM...