Advertisement
Guest User

hacardtemphum

a guest
Apr 28th, 2025
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. type: custom:mini-graph-card
  2. name: Outside Autumn Glen
  3. icon: mdi:weather-partly-cloudy
  4. entities:
  5. - entity: sensor.autumn_glen_outside_temperature
  6. name: Temperature
  7. color: "#FF5733"
  8. - entity: sensor.autumn_glen_humidity
  9. name: Humidity
  10. color: "#3399FF"
  11. hours_to_show: 24
  12. show:
  13. extrema: true
  14. labels: true
  15. color_thresholds:
  16. - value: 32
  17. color: "#0000FF"
  18. - value: 50
  19. color: "#00FFFF"
  20. - value: 70
  21. color: "#00FF00"
  22. - value: 85
  23. color: "#FF0000"
  24. card_mod:
  25. style:
  26. ha-card:
  27. position: relative
  28. padding-bottom: 30px
  29. .: |
  30. div.header::after {
  31. content: "Updated {{ ((now() - states.sensor.autumn_glen_outside_temperature.last_changed).total_seconds() / 60) | int }} min ago";
  32. display: block;
  33. font-size: 12px;
  34. color: var(--secondary-text-color);
  35. margin-top: 4px;
  36. }
  37. .weather-icon:
  38. position: absolute
  39. top: 10px
  40. right: 10px
  41. width: 48px
  42. height: 48px
  43. ha-icon:
  44. width: 48px
  45. height: 48px
  46.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement