[quote=“Z-Waver, post:3, topic:191440”]Your battery operated devices need to be awakened and then configured by the new Vera with the “Configure node right now” option. Additionally, a heal may be necessary after that. See below.
The curious thing is the schedules not working. I’d recommend using SSH to connect to Vera and verify the time and date by issuing the date command. The clock in the GUI is your PC’s clock. The next step would be to look at the Vera log and see what, if anything is happening to the scenes that are not running at their scheduled time.
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]
@Z-Waver… thanks and I’ll try what you suggest. So I understand about what could be happening with schedules and why you are investigating this route but what about device triggers not being executed? I created a brand new simple Scene using the one motion detector I have that didn’t have the “Can’t Detect Device” error to turn on a light. The scene will not fire from the motion trigger yet if I performed a manual Run Scene then it works.
@MCV or anyone representing them…Things should be easier than this at this point in Vera’s life.
Using the above request or luup code will mess up the mesh network and nodes will stop working correctly. This method is in contradiction to our currently implemented Z-Wave healing process that updates the route and lets the chip itself manage the routing table as opposed to the previous method where the gateway kept the routing table.