Affichage fléches caméra PT dans carte Frigate

Merci @Nothing

En fait le problème était la partie custom:frigate-card-conditional qui devait attendre une condition vraie pour afficher le contrôle.

Ça fonctionne en enlevant cette partie :

  - type: custom:frigate-card-conditional
    conditions:
      media_loaded: true
      view:
        - live
        - image

La carte finale :

type: custom:frigate-card
cameras:
  - camera_entity: camera.c200_salon
    live_provider: auto
    title: Caméra salon
    webrtc_card:
      entity: camera.c200_salon
elements:
  - type: custom:frigate-card-ptz
    orientation: vertical
    style:
      transform: none
      right: 5%
      bottom: 20%
    service: button.press
    data_left:
      entity_id: button.tapo_camera_928b_move_left
    data_right:
      entity_id: button.tapo_camera_928b_move_right
    data_up:
      entity_id: button.tapo_camera_928b_move_up
    data_down:
      entity_id: button.tapo_camera_928b_move_down
menu:
  style: overlay
  alignment: bottom
  position: bottom
  buttons:
    camera_ui:
      alignment: opposing
live:
  zoomable: false
1 « J'aime »