mAiden88 wrote: ↑Thursday 03 May 2018 9:19
Venzent wrote: ↑Tuesday 01 May 2018 14:18
I have my Nest thermostat configured in Domoticz, so the temperature and humidty is reported. I would like to show the temperature on the dashboard, but have no clue on how to do it, cannot find an example either. Any directions for me?
If you mean dashboard of Dashticz? Then you need to find out what IDX number is youre temperature sensor on Domoticz.
Ex:
Screenshot_60.png
My temperature sensor idx on domoticz is: 2
in the config.js file you do the following
Code: Select all
columns[1] = {}
columns[1]['blocks'] = ['2'] // corrected extra apostrophe :)
columns[1]['width'] = 5;
There you go, you add you're temperature sensor on Dashticz.
Thank you for your clear instruction! I've been messing around with Dashticz, but many of my Domoticz devices are not producing blocks:
Code: Select all
columns[5]['blocks'] = [
1, // openWeather weather Works: shows 3 blocks
'1_1', // openWeather weather degrees Works
2, // openWeather wind Doesn't work
3, // openWeather visibility Doesn't work
4, // Everspring zWave plug: switch Works
8, // Everspring zWave plug: usage Works
10, // Qubino zWave dimmer Works
16, // NeoCoolcam zWave plug: switch Works
25, // SystemAliveChecker: Livingroom PC Doesn't work
26, // SystemAliveChecker: Wifi IP cam Doesn't work
27, // SystemAliveChecker: Study PC Doesn't work
34, // Kodi masterbedroom (minix android) Doesn't work
35, // Kodi livingroom (latest openElec) Doesn't work
36, // SolarEdge web-api kWh Doesn't work
41, // VirtualDevice: Virtual switch Doesn't work
42 // Philips RGBW Hue bulb hallway Doesn't work
];
The HTML source only shows empty div containers for the non-working blocks:
Code: Select all
<div data-id="34" class="mh transbg block_34"></div>
I've downloaded the latest zip file from github. My Domoticz is fully updated aswel.
I have a feeling I'm missing something very simple here. However, delving trough this topic doesn't help me find the solution.
Do you have any idea?
Edit: I've found the solution on a Dutch forum. For some reason
config['auto_positioning'] was set to
1.
Setting this to
0 instantly shows all missing blocks.