-
-
Notifications
You must be signed in to change notification settings - Fork 205
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add start stop channel for Aeotec swipe #1135
Conversation
bc9ca37
to
1177c52
Compare
Signed-off-by: Chris Jackson <[email protected]>
1177c52
to
df8eff7
Compare
Thanks Chris ! |
Let me know how it works in real life (ie with rules etc). I’ve only given it a basic test here since I’m not using the ZW130 in anger...
… On 16 Feb 2019, at 12:22, dastrix80 ***@***.***> wrote:
Thanks Chris !
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub <#1135 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AA_kQ4EL_q4tYEaNSWUK4kE_wyJOCXDVks5vN_gQgaJpZM4a-5D0>.
|
Shall do soon as i work out where the jar file is :) i have 4 of these so they will get a good workout |
I couldn't get the Wallmote Quad to emit anything until I set config parameter 3 (Button slide) to Enable AND config parameter 4 (Notification report) to Central scene and report. In my testing, just setting parameter 3 alone was not sufficient. With both those parameters set, the device would emit a CONFIGURATION_REPORT for parameters 9 and 10. I might have this backwards, but
This HA post seems to say the same thing. If this is the way it's supposed to work, it seems pretty odd to me. @cdjackson Does this match was you were told by Aeotec? |
Interesting. Ill turn the Central Scene & Report back on and do some testing. |
BTW, I'm guessing those values returned in the configuration report are the location of my finger on the sensor when I start and stop the swipe. I find this whole thing rather confusing. The Wallmote Quad has 4 "zones", but there's nothing in these configuration reports that would indicate what "zone" is being swiped (other than a way to possibly derive that from the values). I'm very curious to know what Aeotec says about this functionality. |
switch_startstop1 Each 3,5,7,9 values for the Association Groups gets set to LifeLine for MultiLevel. I would then imagine you get different numerical values on each swipe for each zone? |
Possibly. I didn't try setting any of those associations. I can try that tomorrow. |
Yep, set all those associations. Chris mentioned this to me via email. I'll test this in a few hours and see how I go with report being added to parameter 4 and report back. PS: do you have linked channels for your new string item? I do not. |
Yes, the configuration parameters report the location and direction. I don't plan to try and support that (it's very non-standard!) so I would suggest to disable the config reports. You MUST have the other associations set though. |
Hi Chris Ive done this and the string item reports NULL. I also see no linked channels to this new string item. Nor the channel visible in Habmin Cheers |
I don’t understand. If there are no channels, then there can’t be any items.
Are you using the latest binding? Did you delete the thing and add it back again so it updates the definition?
…Sent from my iPhone
On 18 Feb 2019, at 10:14, dastrix80 ***@***.***> wrote:
Hi Chris
Ive done this and the string item reports NULL. I also see no linked channels to this new string item. Nor the channel visible in Habmin
Cheers
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or mute the thread.
|
Hi Chris, no i didnt delete it. You never mentioned I had to. I have done that now and I can see the channels. |
Sorry - this is always required when the thing type is updated as ESH doesn’t perform any update of definitions.
… On 18 Feb 2019, at 19:42, dastrix80 ***@***.***> wrote:
Hi Chris, no i didnt delete it. You never mentioned I had to. I have done that now and I can see the channels.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub <#1135 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AA_kQ2iIfWuIxPsWS4dJ8Vd9Y77hNJbdks5vOwI-gaJpZM4a-5D0>.
|
No dramas :) I still don't get values populated into the string item despite them being linked now. But the debug does show the Parameter 9 & 10 values |
Can you provide the log - just of what is received here.
If you’re not receiving the multilevel-sensor START/STOP commands, then the associations aren’t configured. We don’t want the parameters being reported as they are not used.
… On 18 Feb 2019, at 19:53, dastrix80 ***@***.***> wrote:
No dramas :) I still don't get values populated into the string item despite them being linked now. But the debug does show the Parameter 9 & 10 values
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub <#1135 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AA_kQxKHWtZVY-H9osKXSB-XuRRGWy2aks5vOwScgaJpZM4a-5D0>.
|
Hi Chris I had the report set in para 4, have changed that now and the log shows the info correctly 19-Feb-2019 06:58:26.684 [DEBUG] [.openhab.binding.zwave.internal.protocol.ZWaveNode] - NODE 20: resetResendCount initComplete=true isDead=false |
Still no values in the string item |
So to be clear, you have an item linked to the switch_startstop channel?
The log looks ok in that the data is being processed, and the event is being passed to the thing handler. After this it will only be processed if the channel is linked to an item that has this channel type. If that is the case, then I will add some more debug to see what is happening.
… On 18 Feb 2019, at 20:00, dastrix80 ***@***.***> wrote:
Still no values in the string item
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub <#1135 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AA_kQ_WJNhnsmrIurZOo35DZIOAjxqaTks5vOwZsgaJpZM4a-5D0>.
|
Correct. See my attached items, I believe I've done this correctly.
|
This adds a new
switch_startstop
channel and makes it available for the ZW130 swipe commands.Closes #598
Signed-off-by: Chris Jackson [email protected]