Hopefully someone can help me,
I installed Dashticz on my synology and edited the config.js
Code: Select all
var _LANGUAGE = 'nl_NL'; //or: en_US, fr_FR, hu_HU
var _HOST_DOMOTICZ = 'http://xxx.xxx.xxx.xxx:8080';
var _DOMOTICZ_REFRESH = 3; //in seconds
var _DASHTICZ_REFRESH = 5; //in minutes
var _THEME = 'default'; // default = dashticz default theme
/*
IF YOU HAVE A MEDIABOX FROM ZIGGO (HORIZON), COPY SWITCH_HORIZON.PHP ON A WEBSERVER INSIDE YOUR NETWORK AND CHANGE THE IP.
ENTER THE PATH TO THIS FILE BELOW.
*/
var _HOST_ZIGGO_HORIZON = ''; //e.g. http://192.168.1.3/domoticz/switch_horizon.php';
var _APIKEY_WUNDERGROUND = 'xxxx';
var _WEATHER_CITY = 'xxx';
var _WEATHER_CITYNAME = ''; //show a different city name, leave empty if same as _WEATHER_CITY
var _WEATHER_COUNTRY = 'NL';
var _USE_AUTO_POSITIONING = false; //don't want to configure positions, use auto positioning
var _USE_FAVORITES = false; //only used when using auto positioning
var _HIDE_SECONDS_IN_CLOCK = false; //do not show the seconds in the clock
var _HIDE_MEDIAPLAYER_WHEN_OFF = false; //when you have a mediaplayer connected, hide it if nothing is playing
var _NEWS_RSSFEED = 'http://www.nu.nl/rss/algemeen';
var _USE_FAHRENHEIT = false;
var _USE_BEAUFORT = false; //Bft instead of m/s
var _TRANSLATE_SPEED = false; //windspeed, north northwest instead of NNW
var _STANDBY_AFTER_MINUTES = false; //enter amount of minutes like: 5 (5 minutes)
var _SCROLL_NEWS_AFTER = 7000; //milliseconds, so 7000 is 7 seconds
var _SHOW_LASTUPDATE = true;
var _LASTUPDATE_FORMAT = 'DD-MM-YY HH:mm';
var _SCREENSLIDER_EFFECT = 'slide'; //'slide' or 'fade' or 'cube' or 'coverflow' or 'flip'
//var _APIKEY_MAPS = '';
//var _MAPS_LATITUDE = '';
//ar _MAPS_LONGITUDE = '';
//var _AUTO_SWIPEBACK_TO = 1; //when no activity, swipe back to main screen after x seconds
//var _AUTO_SWIPEBACK_TIME = 10; //seconds
var buttons = {}
//buttons.moon= {width:12, isimage:true, refreshimage:60000, image: 'moon'}
//buttons.calendar = {mijn kalendar'}
//buttons.buienradar = {width:12, isimage:true, image: 'http://api.buienradar.nl/image/1.0/RadarMapNL?w=285&h=256'}
//buttons.nunl = {width:12, icon: 'fa-newspaper-o', title: 'Nu.nl', url: 'http://www.nu.nl'}
//CUSTOM POSITIONING;
//defining wich blocks to show, de numbers represents the IDX of the device in Domoticz
//only define if you want to use a custom width instead of the default
var blocks = {}
blocks['blocktitle_1'] = {}
blocks['blocktitle_1']['type'] = 'blocktitle';
blocks['blocktitle_1']['title'] = 'Schakelaars'
blocks[93] = {}//schemerlanp woonkamer
blocks[93]['width'] = 4; //1 to 12, remove this line if you want to use the default (4)
//defining number of columns, their contents en widths
//width can be a number 1 to 12, but total widths of all columns should always be 12
columns[1] = {}
columns[1]['blocks'] = ['blocktitle_1',93]
columns[1]['width'] = 12;
I used possitioning and favorites as true and false in all combinations but i don't get any information on my screen
so i also tryed to add switches manualy and this also doesn't get anything on screen.
the only thin i get is the WU blocks
when i look at
http://xxx.xxx.xxx.xxx:8080/json.htm?ty ... favorite=1
it shows all the favorites.
hopefully someone can point me in the right direction.