Hoping someone can help. I have scenes the run on schedule to make things happen throughout the house. I also have scenes that trigger on state change. One, that works very well, is the bathroom fan coming on when an Everspring sensor detects high humidity.
I would like to take this one step further and have Vera configure the polling interval on the device to be more frequent during early morning and mid-evening hours. In theory, this would look something like the below and I could drop it in to my scheduled scenes within one polling interval of the next window.
luup.variable_set(“urn:schemas-micasaverde-com:device:ComboDevice:1”, “WakeupInterval”, “60”, 137)
luup.variable_set(“urn:schemas-micasaverde-com:device:ComboDevice:1”, “PollSettings”, “60”, 137)
However this does not seem to actually configure the device settings (or hold them for the next polling interval).
Could anyone possibly advise?
You will need to shorten the wakeup interval of your sensor, too.
The device wakeup will call for the revised settings in Vera to be updated on the device.
so, consider waking up the unit at least half the difference between the two times of increased polling.
You might be able to do something like that, but it would probably need another action to make Vera push the new wake-up interval (at the next wake-up of the device).
Is this the ST814? You can configure it such that it will auto-push readings when there is a ‘large enough’ delta (5% or more, I think).
That’s what I need but I do not see it documented. Any suggestions?
Parameter 8.
Link. I also see it listed in the manual.
We’re not on the same page. I am looking for a LUUP statement that tells Vera to save these variables and push configuration at the next device wakeup. The lines I posted above seem to do nothing, which would indicate I need to add the equivalent of what happens in the UI when I close the device settings and click Save, possibly?
OK; wasn’t sure if you meant the documentation on the auto-push feature, or still interested in the Luup. It’s clear now. 
(I think in general, folks have found that auto-push may be more reliable than the wake-up mechanism.)
For the poll setting, try the following. It may take effect immediately.
luup.variable_set("urn:micasaverde-com:serviceId:ZWaveDevice1", "PollSettings", "30", 137)
For the wake-up interval, try the following.
luup.variable_set("urn:micasaverde-com:serviceId:ZWaveDevice1", "WakeupInterval", "60", 137)
luup.call_action("urn:micasaverde-com:serviceId:HaDevice1", "Reconfigure", {}, 137)
luup.call_action("urn:micasaverde-com:serviceId:HomeAutomationGateway1", "Reload", {}, 0)
Untested.
Thanks, I will test this and follow up.
I implemented param 8 and it is working well, as you recommended. I still have some other ideas for this snippet though.
[quote=“oTi@, post:5, topic:179335”]Parameter 8.
Link. I also see it listed in the manual.[/quote]
I am new to all this and I am on a feeding frenzy to mastery. Will you tell me where to find this sort of information, please? I’m googling and I’m finding but I am often finding out things that I didn’t know to google. You mention “the manual”, is this for the device or for Vera or something from Z-Wave? Specifically, how did you find what parameters do what and are the same parameters doing the same functions on all other devices or is it “device specific”?
Thank you in advance!