Files
advanced-camera-card/docs
Dermot Duffy f924537025 fix: Replace max_height with height (#1539)
* fix: Replace `max_height` with `height`

BREAKING CHANGE: This entirely removes `min_height`, and replaces `max_height` with `height`. The behavior is obviously not exactly the same, but the prior behavior did not actually work correctly. CSS does not  limit the height of child elements that are `100%` of their parents height if the parent does not have an explicit height set (this caused spillage over the set max height). As such, it's simpler to just allow the user to set the actual height of the card should they need to do so, with a (hopefully) minor loss of flexibility.

* Test fixes
2024-09-15 17:29:05 -07:00
..
2024-09-07 16:16:13 -07:00
2024-09-07 16:40:04 -07:00
2024-04-01 21:09:20 -07:00
2024-04-24 22:00:23 -07:00
2024-09-07 16:40:04 -07:00
2024-09-07 16:16:13 -07:00

Getting Started

Installation

  • HACS is highly recommended to install the card -- it works for all Home Assistant variants. If you don't have HACS installed, start there -- then come back to these instructions.

  • Find the card in HACS:

Home Assistant > HACS > Frontend > "Explore & Add Integrations" > Frigate Card
  • Click Download this repository with HACS.

See Advanced Installation for other installation resources.

Adding your card

  • On a Home Assistant dashboard, choose:
[Three dots menu] > Edit dashboard
  • Click + Add Card shown on the bottom of the screen
  • Choose Custom: Frigate card from the list

Initial configuration

Minimal configuration

type: custom:frigate-card
cameras:
  - camera_entity: camera.office

Video scrubbing configuration

type: custom:frigate-card
cameras:
  - camera_entity: camera.office
profiles:
  - scrubbing

Multi-camera grid configuration

type: custom:frigate-card
cameras:
  - camera_entity: camera.office
  - camera_entity: camera.kitchen
live:
  display:
    mode: grid

See Configuration for full details on supported configuration options.