windos2k

Roombutton

Jun 11th, 2021 (edited)
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.42 KB | None | 0 0
  1. aspect_ratio: 1/1
  2. icon: mdi:sofa
  3. name: woonkamer
  4. show_state: false
  5. size: 40%
  6. styles:
  7.   card:
  8.     - font-size: 12px
  9.   grid:
  10.     - grid-template-areas: '"heating lights" "i i" "n n" "stats stats"'
  11.     - grid-template-columns: 1fr 1fr
  12.     - grid-template-rows: min-content 1fr min-content min-content
  13.   name:
  14.     - justify-self: start
  15.     - padding-left: 10px
  16.     - font-weight: bold
  17.     - font-size: 16px
  18.     - text-transform: lowercase
  19.   img_cell:
  20.     - align-self: start
  21.     - text-align: middle
  22.   custom_fields:
  23.     lights:
  24.       - align-self: start
  25.       - justify-self: end
  26.       - padding-right: 10px
  27.       - color: '#f7cd89'
  28.       - '--icon-color-sensor': >-
  29.           [[[ if (states["light.woonkamer_lampen"].state == "off") return
  30.           "#636363"; ]]]
  31.     heating:
  32.       - align-self: start
  33.       - justify-self: start
  34.       - padding-left: 10px
  35.       - color: '#f789b3'
  36.       - '--icon-color-sensor': >-
  37.           [[[ if (states["climate.lyric_b7ae7e"].state == "off") return
  38.           "#636363"; ]]]
  39.     stats:
  40.       - padding-left: 8px
  41.       - align-self: start
  42.       - justify-self: start
  43. custom_fields:
  44.   heating: |
  45.    [[[
  46.       return `<ha-icon
  47.         icon="mdi:fire"
  48.         style="width: 26px; height: 26px; color: var(--icon-color-sensor">
  49.         </ha-icon>`
  50.     ]]]
  51.   lights: |
  52.    [[[ if (states["light.woonkamer_lampen"].state == "on")
  53.       return `<ha-icon
  54.         icon="mdi:lightbulb-outline"
  55.         style="width: 26px; height: 26px; color: var(--icon-color-sensor">
  56.         </ha-icon>`
  57.        if (states["light.woonkamer_lampen"].state == "off")
  58.       return `<ha-icon
  59.         icon="mdi:lightbulb-off-outline"
  60.         style="width: 26px; height: 26px; color: var(--icon-color-sensor">
  61.         </ha-icon>`
  62.     ]]]
  63.   stats: |
  64.    [[[
  65.       return `<ha-icon
  66.         icon="mdi:thermometer"
  67.         style="width: 12px; height: 12px; color: #f789b3;">
  68.         </ha-icon><span>${states['sensor.lumi_lumi_weather_temperature'].state}°C </span>
  69.         <ha-icon
  70.         icon="hass:water"
  71.         style="width: 12px; height: 12px; color: var(--primary-color)">
  72.         </ha-icon><span>${states['sensor.lumi_lumi_weather_humidity'].state}%</span>`
  73.     ]]]
  74. type: custom:button-card
  75. tap_action:
  76.   action: fire-dom-event
  77.   browser_mod:
  78.     command: popup
  79.     title: Woonkamer
  80.     hide_header: false
  81.     card:
  82.       type: vertical-stack
  83.       cards:
  84. #Insert your cards here
Add Comment
Please, Sign In to add comment