Scenes and some other data does not display?
Posted: Saturday 22 September 2018 15:52
Noob question, I'm sure.
I have created a scene, which has been given the IDX 3. I want to use this scene to turn off most lights and dim some others.
I have set:
I have a dummy switch, which has been given the IDX 6. This shows if I am there or nearby, based on a proximity app I have installed on my mobile. In Dashticz I added:
and both are added to the column:
However, neither one of them is displayed. The block titles are, but the buttons are omitted. I have this with other values aswell. I wanted to display the current temperature that is collected from the local wunderground station. In Domoticz I see all the values, like 13.6 degrees. But no information is shown in Dashticz, when I ask for '26_1' (or even just 26).
I would appreciate any insight
I have created a scene, which has been given the IDX 3. I want to use this scene to turn off most lights and dim some others.
I have set:
Code: Select all
blocks['s3'] = {}
blocks['s3']['title'] = 'Nacht';
blocks['s3']['icon'] = 'fa-power-off';
Code: Select all
blocks[6] = {}
blocks[6]['width'] = 6;
blocks[6]['icon'] = 'fa-male';
blocks[6]['hide_data'] = true;
blocks[6]['title'] = 'Marque';
Code: Select all
columns[1] = {}
columns[1]['blocks'] = ['blocktitle_2',135,144,'blocktitle_3','s3','blocktitle_4',6]
columns[1]['width']['default'] = 2;
columns[1]['width']['tablet'] = 2;
I would appreciate any insight
- Spoiler: show