With my fairly simple config, I am getting message "Double check path to domoticz in settings!". It pops up after few seconds of using dashticz. Everything is loaded & displayed properly, but still I did not manage to find the reason behind this annoying issues.
Maybe I missed something obvious? Could you take a look quickly?
Code: Select all
var config = {}
config['domoticz_ip'] = 'http://192.168.2.150:8080';
config['app_title'] = 'xyz';
config['domoticz_refresh'] = '5';
config['dashticz_refresh'] = '60';
var buttons = {}
buttons.buienradar = {width:12, isimage:true, image: 'https://api.buienradar.nl/image/1.0/RadarMapNL?w=285&h=256'};
var blocks = {}
blocks['58'] = {}
blocks['58']['icon'] ='fa-home';
blocks['58']['title'] = 'Cho';
blocks['47'] = {}
blocks['47']['icon'] ='fa-female';
blocks['47']['title'] = 'Gab';
blocks['1'] = {}
blocks['1']['icon'] ='fa-home';
blocks['1']['title'] = 'Local';
var columns = {}
columns[1] = {}
columns[1]['blocks'] = ['graph_1','graph_47','graph_58']
columns[1]['width'] = 5;
columns[2] = {}
columns[2]['blocks'] = [1,47,58]
columns[2]['width'] = 4;
columns[3] = {}
columns[3]['blocks'] = [buttons.buienradar]
columns[3]['width'] = 2;
var screens = {}
screens[1] = {}
screens[1]['background'] = 'iss2.jpg';
screens[1]['columns'] = [2,3]
Tomasz