Search found 13 matches

by John Smith
21 Dec 2018 18:51
Forum: Discussions in English
Topic: Send SensorMultilevel unsolicited from controller
Replies: 36
Views: 29142

Re: Send SensorMultilevel unsolicited from controller

Have you made progress? Would be cool to have a module for this. We can help to suggest you the correct logic and do code revision. Or even help with writing it (but we lack of time) Updated repository. Looks like it works. Checked on two group of devices. https://github.com/alex-parkhomenko/Sensor...
by John Smith
13 Dec 2018 21:21
Forum: Discussions in English
Topic: Send SensorMultilevel unsolicited from controller
Replies: 36
Views: 29142

Re: Send SensorMultilevel unsolicited from controller

Changed 22 to 42, here are the logs. Can't decode RECEIVED, will see how it will work. First line is the module console.log debug output to check hex numbers. [2018-12-13 21:07:09.542] [I] [core] [SME] 2450 : 09 92 [2018-12-13 21:07:09.542] [I] [zway] Adding job: SensorMultilevel [2018-12-13 21:07:0...
by John Smith
13 Dec 2018 17:45
Forum: Discussions in English
Topic: Send SensorMultilevel unsolicited from controller
Replies: 36
Views: 29142

Re: Send SensorMultilevel unsolicited from controller

Noticed this in your output: RECEIVED: ( 01 04 01 13 01 E8 ) if you compare received values with sending values you will notice that the received part is wrong. You send 31, 05, 01, 22, byteH, byteL and received 01 04 01 13 01 E8. There is a problem converting from hex. In my past test i send comma...
by John Smith
13 Dec 2018 12:35
Forum: Discussions in English
Topic: Send SensorMultilevel unsolicited from controller
Replies: 36
Views: 29142

Re: Send SensorMultilevel unsolicited from controller

Tried to send spirits reports from controller. Report sent, acknowledged, but nothing happens. Returned to direct thermostat associations for now. Here is code, took parameters from my termostat reports to controller. 0x31 is the command class 0x05 is the report 0x01 is the response (?) 0x22 is the ...
by John Smith
11 Dec 2018 23:28
Forum: Discussions in English
Topic: Send SensorMultilevel unsolicited from controller
Replies: 36
Views: 29142

Re: Send SensorMultilevel unsolicited from controller

Here is the code: https://github.com/alex-parkhomenko/SensorMirrorExt A virtual device that completely mirrors a sensorMultilevel. Need to choose the device when adding. The code is very basic. The only thing that I still need to do is to add zwave.send with proper parameters and add corresponding UI
by John Smith
10 Dec 2018 02:00
Forum: Discussions in English
Topic: Send SensorMultilevel unsolicited from controller
Replies: 36
Views: 29142

Re: Send SensorMultilevel unsolicited from controller

BTW, I can go by another route and make a pure virtual device that can replicate the value using ValueOverTaker, for instance, and send corresponding commands. For my personal task I can give it mqtt visibility with my own mqtt module and achieve the same result (current module doesn't allow to modi...
by John Smith
10 Dec 2018 01:32
Forum: Discussions in English
Topic: Send SensorMultilevel unsolicited from controller
Replies: 36
Views: 29142

Re: Send SensorMultilevel unsolicited from controller

What I have for now is mqtt to event emitter interface and virtual device module that reads value from mqtt (or any other source that can handle EE events). Just finished first draft, in the next days will try to make it send z-wave commands. It would be really helpful, if you explain your zway.Send...
by John Smith
23 Oct 2018 21:38
Forum: Discussions in English
Topic: Send SensorMultilevel unsolicited from controller
Replies: 36
Views: 29142

Re: Send SensorMultilevel unsolicited from controller

Great! Will try it on weekend and report. On success promise to contribute a module. Thanks!