-
-
Notifications
You must be signed in to change notification settings - Fork 30
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
SetPollInterval not working #173
Comments
This is probably a duplicate of OpenZWave/open-zwave#2284, as it doesn't look like The other problem is that your command topic is incorrect, it should be all lowercase: I have not been successful in changing the poll interval whether I try |
I tried the way I had it and all lowercase, neither made a difference. |
How do you set this? I don't see it documented, and I have a lot of GE light dimmers that need to be polled. |
@poblabs it looks like things are partly working - I was able to turn polling on using enablepoll (on the topic OpenZWave/1/command/enablepoll/ with payload { "ValueIDKey": 173047831, "Intensity": 600 } where you find the ValueIDKey in the value you want to poll, and change the base polling interval using OpenZWave/1/command/setpollinterval/ with payload { "interval": 500000, "intervalBetweenPoll": true } which seems (I hope) to get me about 10 minutes. I don't think the enablepoll intensity parameter is working properly, it seemed like no matter what I did I got 30 seconds until issuing the setpollinterval command. I have a few devices that I want to poll about every 10 minutes - with the old OpenZWave I had the interval at 1 minute and the intensity at 10, I was hoping to duplicate this but it doesn't seem to be working. UPDATE: Using interval 600000 gives one minute intervals, and enable poll seems to have a max of 88, so interval 600000 and enable poll with 10 gives exactly 10 minutes. |
Anything we can do to help move this issue forward? |
Pull request https://github.com/OpenZWave/open-zwave/pull/2643 fixes intensity parameter. |
I have some GE 14294 switches that require polling to update state correctly. I have gotten polling enabled with intensity 1, however the interval is still at 30 seconds and I cannot figure out how to change that. I have published the following to mqtt via developer tools but it does not seem to work. Since there is no real documentation on this, I'm not sure if I'm doing this right, if not could someone kindly help me out with my command?
topic: OpenZWave/1/command/SetPollInterval/
payload: '{"interval":1000,"intervalBetweenPoll":true}'
retain: true
The text was updated successfully, but these errors were encountered: