Show off your favourite dashboard creations!

wow @benm7 that looks amazing! What do you use for the room buttons (and how to you reveal the entities behind those?)

greetz

Im also looking for a substitute for darksky, anyone suggestions?

Great work!
Which custom card are the circle graphs from?

Great work man. I am interested in the code for your tracking of you and your wife. I am trying to accomplish something like that myself. Thanks ahead of time

Just a range of different custom button cards with custom fields depending on my needs eg. temperature only, temperature + colour code for certain appliances/devices.

I use popup cards through card-mod to show everything within that room.

Its from Apex Charts: ApexCharts card - A highly customizable graph card

The type is radial bar

1 Like

how do you show the weather icon in a markdown?

2 Likes

Interested in this aswell… :slight_smile:

The icon isn’t actually in the markdown, it’s a separate button card for the icon.

You can embed specific icons in markdown (can send code if you want this) but I have chosen to replicate most markdowns as button cards as it gives much more flexibility.

image
So this is a 2 button or a 3 button area?

It’s a layout card in columns with a button (weather icon) then a markdown (all the weather words) then another area for four alert buttons when doors are open, lights are on, leaks in bathroom, or garbage needs to be taken out.

Will upload full yaml to GitHub tonight :slight_smile:

4 Likes

Here is the full code for the greeting.

I add this to the top of every view so it appears at the top of each one consistently. Example of. main screen below:

title: Home
path: home
icon: mdi:home-variant
background: var(--background-image)
popup_cards:
  !include ../popup-cards/main-popup-card.yaml
cards:
  - type: vertical-stack
    cards:
      - !include '../custom_header/greeting2.yaml'
4 Likes

My dashboard. Work on it is still underway

7 Likes

Hi Ben,
Could you please to share config for Downstair card in Girls Room view?
I’m interested with the percentage value…

button_card

  circle:
    variables:
      circle_input: >
        [[[ return Math.round(entity.attributes.brightness / 2.54); ]]]
    custom_fields:
      circle: >
        [[[
          if (entity.state === 'on') {
            const input = variables.circle_input;
            const radius = 18;
            const circumference = radius * 2 * Math.PI;
            return `
              <svg viewBox="0 0 50 50">
                <style>
                  circle {
                    transform: rotate(-90deg);
                    transform-origin: 50% 50%;
                    stroke-dasharray: ${circumference};
                    stroke-dashoffset: ${circumference - input / 100 * circumference};
                  }
                  tspan {
                    font-size: 10px;
                  }
                </style>
                <circle cx="25" cy="25" r="${radius}" stroke="#b2b2b2" stroke-width="1.5" fill="none" />
                <text x="50%" y="54%" fill="#8d8e90" font-size="13" text-anchor="middle" alignment-baseline="middle" dominant-baseline="middle">${input}<tspan font-size="10">%</tspan></text>
              </svg>
            `;
          }
        ]]]
    styles:
      custom_fields:
        circle: &person
          - top: 1%
          - left: 60%
          - width: 3.5vw
          - position: absolute
          - letter-spacing: 0.03vw
1 Like

Amazing, really helpful.

But a small question - I want to fit the card into the phone, and it is too big.

I did exactly what was written - the icons work really well, but the big one is really huge.

Can you help with the size of the phone card?

helpful :slight_smile:

@olegosipenko87 Do you have your full code posted somewhere? I’m interested in several things, though especially your sidebar code.

Thanks!

Hi, here are some photos of my Dashboard on an 8” Lenovo Tab 3 with fully kiosk:

I have selected only the most interresting ones.

Main Dashboard with the main controls and a navigation to other pages:

Media Page to control all the media, with Kodi, AndroidTV, snapserver and spotify

System+Network overview dashboard:

Door/Window Motion + other informarion dashboard:

2 Likes

Mind sharing your home and “girls room” templates?

The room dashboard is so clean, very good work.