I have Aeon Micro Smart Energy Switch 2nd edition (DSC18103-ZWUS).
I already connected to ST hub, normally work, switch and energy reporting.
But, I have a problem with energy reporting interval. By default, using “Aeon Outlet” device type, energy reporting is every 300 second.
def configure() {
delayBetween([
zwave.configurationV1.configurationSet(parameterNumber: 101, size: 4, scaledConfigurationValue: 8).format(), // energy in kWh
zwave.configurationV1.configurationSet(parameterNumber: 111, size: 4, scaledConfigurationValue: 300).format(), // every 5 min
zwave.configurationV1.configurationSet(parameterNumber: 102, size: 4, scaledConfigurationValue: 0).format(),
zwave.configurationV1.configurationSet(parameterNumber: 103, size: 4, scaledConfigurationValue: 0).format()
])
with default, everything works fine, energy report it’s value every 300 second, here’s the log :
I’m also able to change it reporting interval, for example, 200 second
310 second
But strangely, I can’t change the value far bigger.
I change the interval to 480 second, here’s what happen
The interval time / delta time is not right. Never 480 second. it divided into to reporting interval.
120 s and 360 s . 115 s and 365 s
I try change bigger value, 720 second
here’s the log
for me, reporting KWH every 5 minutes is too fast, no need that kind of reporting.
Reporting energy usage every 4-6 hours, is more than enough.
How do I change the reporting interval for this device ?