First and foremost, this is my first post and have been reading and learning from this amazing community. A giant thank you to all of the contributors here.
There is a “Report Data Interval” preference which I’ve set to 600; however, my sensor is only reporting (humidity is the one I’m after) once every hour.
Is there another value in the device handler that needs to be updated so that it reports more frequently than every 60 minutes?
Yes, if the device is battery powered, then the “Report Data Interval” parameter will basically only accept values of 60 minutes or above. You have to adjust the “wake” interval. Looking at the device type it seems like it is set to “wake” every 5 minutes though:
and configure again, see if that works. Try forcing the configure to go through by double tapping the button on the back, wait a second, and then hit configure in the app. The light on the device should light up blue or green for a few seconds after you double press the button.
Also, I think the device is configured to only send reports for certain measurements if they have changed by a certain threshold. So even if the wake time is changed to 10 minutes, you may not get a report unless the threshold is met.
Thanks @erocm1231 for the response. I have two Aeon Multi 6’s that I have updated using the instructions above. Both showed this event after I hit the configure button:
COMMAND | configure | configure command was sent to Bedroom Multi Sensor | true
I then put one of the sensors in a drawer (no light) and left the other where it was in the bedroom. On the same hourly interval both sent back the updates values for temp, humidity, and illuminance.
I’m not sure what to try next, and appreciate your help.
If the config process is working properly you should get that log.debug info with the wakeUpInterval report. That way you can confirm that the wake up interval is getting set correctly.
@Pleasant30 It doesn’t look like the configuration is going through. Are you sure the device is awake when you hit the configure button in the app? It might be a triple click on the device instead of a double click, but you should be seeing a bunch of stuff like this in the log:
Thank you @erocm1231! That worked for both sensors. Can you let me know what:
zwave.wakeUpV1.wakeUpIntervalGet()
Does? I added that to the handler, and tried doing the config process hitting the button, once, twice, and then three times. One of the above stuck for both sensors they are working great.
You should get a report from the device showing that its wake up interval has been changed. This is how you confirm that setting has actually changed. As you witnessed first hand, just because you send a configure command to a device, doesn’t mean the device actually received the configure command. This is especially true with Z-Wave devices that sleep (most battery powered devices). If they are asleep, they won’t get the config changes.