Page 1 of 1
Razberry Zwave Nodes disappears after reboot
Posted: Monday 17 July 2017 20:16
by bks84
Hello everyone,
Can anyone tell me what I should look for to make sure that the Zwave nodes does not disappear after a reboot? As soon as I stop the Domoticz service and remove the Zwcfg XML file and restart the service, the Zwave nodes are visible and are working fine. However as soon as I reboot the Raspberry Pi the Zwave nodes are gone again. I cannot find any solution for this, I hope someone can point me in the right direction.
Thanks in advance!
Re: Razberry Zwave Nodes disappears after reboot
Posted: Tuesday 18 July 2017 22:25
by dressie
I got the same thing. I just upgrade my hardware to a small PC running Linux. It's so fast that the Zwave Stick is not ready yet before Domoticz is loaded. This means I have to stop and start Domoticz before Zwave NODES return to Domoticz.
Is there a way to delay the startup by some time?
Re: Razberry Zwave Nodes disappears after reboot
Posted: Thursday 20 July 2017 16:25
by mivo
Hi,
you can add delay to startup script of Domoticz, for example:
Numeric argument is time in seconds.
If using systemd unit, there are many different options...
Re: Razberry Zwave Nodes disappears after reboot
Posted: Thursday 20 July 2017 16:28
by dressie
mivo wrote:Hi,
you can add delay to startup script of Domoticz, for example:
Numeric argument is time in seconds.
If using systemd unit, there are many different options...
Thanks! Willing to try this, could you tell me where to add this line (almost no noob anymore)

?
Verstuurd vanaf mijn SM-G920F met Tapatalk
Re: Razberry Zwave Nodes disappears after reboot
Posted: Thursday 20 July 2017 17:40
by mivo
Copy for backup, and then open startup script /etc/init.d/domoticz.sh with preferred editor (vi, nano etc.)
Search for these lines:
Code: Select all
case "$1" in
start)
[ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME"
do_start
Add sleep line:
Code: Select all
case "$1" in
start)
[ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME"
/bin/sleep 10
do_start
Re: Razberry Zwave Nodes disappears after reboot
Posted: Monday 07 August 2017 7:04
by bks84
mivo wrote:Copy for backup, and then open startup script /etc/init.d/domoticz.sh with preferred editor (vi, nano etc.)
Search for these lines:
Code: Select all
case "$1" in
start)
[ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME"
do_start
Add sleep line:
Code: Select all
case "$1" in
start)
[ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME"
/bin/sleep 10
do_start
I just tried this, but unfortunately it did not worked.
Re: Razberry Zwave Nodes disappears after reboot
Posted: Monday 21 August 2017 23:16
by bks84
I have reinstalled Domoticz from scratch and now it seems that the problem has been resolved
