Page 1 of 1

Standby Screen does not work

Posted: Sunday 14 October 2018 20:01
by Dave47
Hallo we have tried ta make a standby screen but it does not work.
Nothing changed.

In config.js we have

config['standby_after'] = 5;
config['domoticz_refresh'] = '5';
config['dashticz_refresh'] = '60';

and

var columns_standby = {}
columns_standby[1] = {}
columns_standby[1]['blocks'] = ['1','clock','currentweather_big','weather']
columns_standby[1]['width'] = 12;

Are these the only things or must we do more settings


Can someone help us

Re: Standby Screen does not work

Posted: Monday 15 October 2018 21:04
by Lokonli
Yes, that should be it. With these settings the screen should turn black after 5 minutes, assuming you don't move your mouse nor touch your screen.
Probably easier to test with:
config['standby_after'] = 1;

If it's not turning black than check that you don't redefine config['standby_after'] or columns_standby somewhere else in your config.js.

If still not working then you can try in Chrome. Press F12 to see the developer window. Maybe an error appears after one minute (in the console tab).

Re: Standby Screen does not work

Posted: Wednesday 17 October 2018 13:13
by Dave47
Hallo,
It works. Thank you.