@phoenix1030
I had the same problem with my HEM.
Everytime one of the clamps was frozen, i realized that also the "capabilities" line in the settings tab of the frozen clamp was empty.
After "Config Node right now" (only for the Masterdevice of HEM) all clamps are reading corectly again.
When i found this i started to write a scene which checks (LUUP Code) if one of the "capabilities" line is empty. If so, it starts a Config node for the masterdevice of HEM.
After this, i no longer had problems with.
My scene uses no Trigger.
It uses a scheduler starting the schen every 15 Minutes. (This can be also a longer timeperiod)
It uses this LUUP Code:
(Even if i read "clamp all" and all 3 single clamps i'm only checking for "clamp all" and clamp 1 and clamp 2)
local c_all = luup.variable_get("urn:micasaverde-com:serviceId:ZWaveDevice1", "Capabilities", 16)
local c_1 = luup.variable_get("urn:micasaverde-com:serviceId:ZWaveDevice1", "Capabilities", 17)
local c_2 = luup.variable_get("urn:micasaverde-com:serviceId:ZWaveDevice1", "Capabilities", 18)
local c_3 = luup.variable_get("urn:micasaverde-com:serviceId:ZWaveDevice1", "Capabilities", 19)
if (c_all == "210,28,0,4,33,1,L,R,B,RS,|49,50:2,96:2,112,114,128,133,134,"
and c_1 == "210,28,0,4,33,1,L,R,B,RS,|49,50,"
and c_2 == "210,28,0,4,33,1,L,R,B,RS,|49,50,") then
return false
end
Hope it was described clear and helps you.
Regards, Paul
Append from Paul:
In meantime, i realized, that all the "capabilities" do have other entries.
That's why, my AEON will simply be reconfigured every 15 Minutes.
May be, it's better to check for empty "capabilities" lines instead of checking for a specific value.
Maybe, this changes happened after updating VERAs firmware.