TileBoard - New dashboard for Homeassistant

Hi,
is it possible to hide the warning for certain entities that go offline periodically (lights) or turn off the notifications completely

Please create an issue on github.

How are the Material Design Icons pulled into the project? I’d like to update them because there are icons on the MaterialDesignIcons.com website since May that aren’t available in TileBoard, but I can’t see where the library is being included.

<link rel="stylesheet" async
      href="https://cdn.materialdesignicons.com/2.4.85/css/materialdesignicons.min.css">

At the very bottom of index.html

I’ve updated the link to new MDI set. Please pull the latest code.

1 Like

I know, Lol
I just figured I would attempt to ask you to try to make it somewhat easier if possible, as most backends associated with HA and mods do require knowledge of associated languages.
Thanks for taking the time and trouble creating more options for us.
I do appreciate it.

1 Like

HI,
Is there a way to have Groups span both vertically and horizontally. I would like to have 4 groups a cross the page and 2 down the page.
I have tried adding
position: [0, 0],
and
position: [1, 1],

to the group definition but this doesn’t seem to make a differnece

thanks

No, this would simply kill the grid. It’s either all vertical or all horizontal. Position is only for tiles, not groups.

Ok thanks for that.
I have found a nother way ant that is to make the tiles smaller setting the Width and Height to 0.8. However there is a gap between tiles withint the group.
I have added
groupMarginCss: '10px 10px',
to the top of the page, but it doesn’t appear to have an effect.

how do you shange the gap between tiles for a page only?

You could alter individual tiles.

customStyles: {
‘backgroundColor’: ‘royalBlue’,
‘margin’: ‘20px’
},

Ok thanks, will give that a try, custom background was also on my list of questions. Looks like I need to brush up on my CSS knowledge.
BTW; Am really loving TileBoard - it is really a step up from HADashboard - great job !!!

Everything working great now with customStyles updates. Thanks for getting it fixed so quickly.

1 Like

Yep, TileBoard is brilliant - thanks to @resoai and everyone helping him out.

I have some switches as binary_sensor using gpio in my pi. How would I control it? It seems that there is not a binary sensor tile. Or I will have to do a workaround using script and automation?

Switches and Binary_Sensor are not the same. If you mean you have binary_sensors in HA, you can display them using either TYPES.SENSOR or TYPES.SENSOR_ICON depending on what works best for your display needs.

I know it’s not the same. By gpio I can control it, just as a switch, using and automation. I understand that using SENSOR I will only receive status, not control it.

If it is a switch, use SWITCH tile, you can can change icon depending on the state.

It works as a switch, but in fact it is a binary_sensor that triggers automation.
I tryed using switch tile (using binary_sensor entity as id) but it doesn’t work.

I think you might be confusing the terminology. Sensor is read only, it is something which displays value only.

That’s is what I said to swiftlyfalling.
If you are referring to binary sensor as a read only, it’s not. I can change its status by a gpio switch (physical), then by automation, control a switch.entity.