What I’ve noticed so far with temperature reporting is that it seems to report temp changes every 2 degree celsius. Is there a way to send a configuration command to the device to report temp changes every 1 degree? I have a few smartsense multi’s and they report changes every 1 degree.
I’ve seen this command in some zwave device code zwave.configurationV1.configurationSet but I’m not sure what I need to pass it if this is even possible. Haven’t been able to find any documents that can help me either.
Any device engineers at ST or anyone know the answer to this?
I’ve been looking for temperature offsets for my own devices, would you be able to take a moment to look at the Aeon Multisensor and see if you can throw in a positive or negative offset field?
// send all data (temperature, humidity, illuminance & battery) periodically
zwave.configurationV1.configurationSet(parameterNumber: 101, size: 4, scaledConfigurationValue: 30).format(),
// set data reporting period to 5 minutes
zwave.configurationV1.configurationSet(parameterNumber: 111, size: 4, scaledConfigurationValue: 30).format()
])
Does that help? I’m not too familiar with device types. The default device type works pretty good, seems a little slow to update though.
Yeah i’ve seen that when I looked through the examples but that tells me its fetching all data in 5 minute interval. I tried that to see if temp would come back every 5 minutes even if no temp changes. However that was not the case. So I want to know if anyone out there can tell me if there is a parameterNumber I can pass zwave.configurtionV1.configurationSet that will change the report frequency as it seems to only send temp updates every 2 degrees, when i’d like it to send every 1 degree, regardless of time… @urman could you help answer this?
It’s funny I didn’t even realize you posted that even though I responded to part of your post. I just installed it, I’ll let you know. Thanks for your time!
(Edit) I actually don’t see a way to offset the temp or humidity. Preferences?
I made an update, pull the code from my GIT and copy paste over the old one. I assigned the device type to one of my monoprice motion/temp and it seems to work… just doesn’t report all the other stuff the aeon does. Also if you take the battery out and place it back in after you publish the code it should trigger the device to wakeup and update temp right away.