Well, from what I can see, you have defined it not within the group, but as a group
Huh, how have I done that
I can see now that I’ve not placed it within an items: [...]
I will give you a hint but I really want you to look at where you have pasted that code and correct it yourself
Page -> Group -> Items = OK
Page -> Item = NOT OK
Ok I worked it out as it wasn’t in an items: [...]
thanks
groups: [
{
title: 'Climate',
width: 2,
height: 2,
items: [
{
position: [0, 0],
width: 2,
id: 'climate.thermostat',
type: TYPES.CLIMATE,
unit: 'C',
state: function (item, entity) {
return 'Current '
+ entity.attributes.current_temperature
+ entity.attributes.unit_of_measurement;
},
},
]
},
Should climate times be interactive? i.e the ability to change the climate?
Climate times? You can change operation mode and set target temperature via the tile.
Sorry meant to say climate tiles.
They are
Mmmm ok well I don’t seem to be able to change anything, My thermostat is off currently but long press or tap gives me not controls.
There is no on/off for the thermostat but you can set operation mode and target temperature. To be frank it is kinda strange that certain thermostats can be turned off.
When it is off, it is probably not exposing current operation mode. Turn it on and it will all work.
I seem to be seeing a strange graphical issue that increases between page changes. 1st page shows nothing, second page a black line appears at top of page, 3rd page line gets bigger.
See attached:
There could be an error in one of the tiles.
needle in a haystack.
Just clear cache, reload the page and open browser console.
Its not pointing to anything as far as I can tell. State changed appearing and the previous angular.js error I mentioned.
Ok found the issue. If I change hideScrollbar: false
the black line goes, setting it to true
and it returns. Bug?
This not a but, hideScrollbar is a very hacky workaround for tablets which is not for everyone.
Its not for me then… set to false from this point on lol
Thanks for your help.