[quote=“jsingle, post:10, topic:191452”]Z-Waver, this is gold. I was searching for something like this just yesterday and I couldn’t find it. You nicely sum it up in a thread about ZigBee/ZWave bulbs of all places.
Thank you.
[quote=“Z-Waver, post:7, topic:191452”]Officially, there is no heal. In my opinion, this is an interface design flaw as waiting until the next day to be able to use a newly installed device, as is liekly to happen in mixed or legacy Z-Wave networks, is unreasonable.
But, many people have had luck triggering a heal with one of these options:
Manually initiate a network heal in UI7.
http://:3480/data_request?id=lu_action&serviceId=urn:micasaverde-com:serviceId:ZWaveNetwork1&action=HealNetwork&BatteryMinutes=30&StressCycles=2&StartStage=1&StopStage=3
This Lua code accomplishes the same task.
[Code]
– Initiate Z-Wave network heal.
– Intended for starting heal after adding new devices.
– Depending on the size of your network, a heal can take a very long time.
local URN = “urn:micasaverde-com:serviceId:ZWaveNetwork1”
local ACT = “HealNetwork”
local BATT = {BatteryMinutes=30} – Default 30. Nightly 60.
local ITR = {StressCycles=2} – Default probably ample.
local START= {StartStage=1}
local STOP = {StopStage=3} – Default 7. UI7.10 or greater probably needs to go no further than 3.
luup.call_action(URN, ACT, BATT, ITR, START, STOP)[/code][/quote][/quote]
Doesn’t a zwave heal happen automatically every night with the latest Firmware in UI7 without the need for the user to do anything?