Advertisement
-Teme-

Nordpool prices in a table

Sep 13th, 2023 (edited)
887
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.81 KB | None | 0 0
  1. type: horizontal-stack
  2. cards:
  3.   - type: custom:flex-table-card
  4.     title: SPOT Today
  5.     entities:
  6.       include:
  7.        - sensor.nordpool
  8.     columns:
  9.       - name: ''
  10.         data: raw_today
  11.         modify: new Date(x.start).getHours()
  12.         icon: mdi:clock
  13.         suffix: '.00'
  14.       - name: ''
  15.         data: today
  16.         align: right
  17.         icon: mdi:currency-eur
  18.         suffix: ' snt'
  19.   - type: custom:flex-table-card
  20.     title: SPOT Tomorrow
  21.     strict: true
  22.     entities:
  23.       include:
  24.        - sensor.nordpool
  25.     columns:
  26.       - name: ''
  27.         data: raw_tomorrow
  28.         modify: new Date(x.start).getHours()
  29.         icon: mdi:clock
  30.         suffix: '.00'
  31.       - name: ''
  32.         data: tomorrow
  33.         align: right
  34.         icon: mdi:currency-eur
  35.         suffix: ' snt'
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement