TileBoard - New dashboard for Homeassistant

Well, from what I can see, you have defined it not within the group, but as a group :slight_smile:

Huh, how have I done that :smiley:

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 :slight_smile:

Page -> Group -> Items = OK
Page -> Item = NOT OK

1 Like

Ok I worked it out as it wasn’t in an items: [...] thanks :slight_smile:

 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 :slight_smile:

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.

55%20am

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.

Similar to how HA front end works? I’m not seeing this kinda control.

When it is off, it is probably not exposing current operation mode. Turn it on and it will all work.

2 Likes

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:
39%20pm

tileboard%20issue

There could be an error in one of the tiles.

:frowning: 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 :slight_smile:

Thanks for your help.

1 Like