Page 1 of 1

BinarySwitch.Set - Prevent confirmation Get possible?

Posted: 24 Jun 2020 13:32
by anom3
Is it possible without sending raw data to the zwave adapter to perform a .Set(... command on a node and not have z-way-server perform a subsequent .Get() to confirm the command was accepted + executed?

Thanks.

Re: BinarySwitch.Set - Prevent confirmation Get possible?

Posted: 25 Jun 2020 20:23
by PoltoS
Yes, send raw command.

zway.SendData(N, [0x25, 0x01, VV]) or zway.SendDataSecure(N, [0x25, 0x01, VV]) if security is needed

Re: BinarySwitch.Set - Prevent confirmation Get possible?

Posted: 25 Jun 2020 21:05
by anom3
AWESOME!!!!!!! Thanks so much!

Re: BinarySwitch.Set - Prevent confirmation Get possible?

Posted: 01 Jul 2020 17:22
by anom3
This works great for me, question though... How does one go about sending to instance 1 / 2?

Thanks!

Re: BinarySwitch.Set - Prevent confirmation Get possible?

Posted: 02 Jul 2020 05:34
by PoltoS
You can always send a command and look in the log for the payload. This will work for any command.

For your case [0x60, 0x0D, 0x00, II, 0x25, 0x01, VV])

Re: BinarySwitch.Set - Prevent confirmation Get possible?

Posted: 02 Jul 2020 13:19
by anom3
I now understand the general syntax... I was getting a little mixed up with the leading / tailing bytes.

Must say, wow this is quite a bit faster. I understand the logic behind the Set -> Get behavior, but as my use case is slightly advanced this is the way to go. I have been watching my timing / routing for about a week now... Safe to say that the mesh is solid and the packets always make their way where they belong.

Thanks again!

Re: BinarySwitch.Set - Prevent confirmation Get possible?

Posted: 03 Aug 2020 22:41
by ibjr
@PoltoS : the zway.SendData(N, [0x25, 0x01, VV]) command for unsecure devices work, but i cannot get the zway.SendDataSecure(N, [0x25, 0x01, VV]) working for the secured devices.
I am running 3.0.6-16-g6f74a6e_armhf.deb with firmware 5.39. Has something changed in that beta release?

Re: BinarySwitch.Set - Prevent confirmation Get possible?

Posted: 05 Aug 2020 05:51
by PoltoS
What is in the log? Sure deviec is secure? S0 or S2?

Re: BinarySwitch.Set - Prevent confirmation Get possible?

Posted: 05 Aug 2020 15:08
by ibjr
It is a S0 device; I have send you the logs via private mail.