I'm working on setting up an emergency camera record system for my sister between HA and Frigate. End goal is 'hit a button in HA, Frigate pulls it's record buffer and records all cameras until the button is pressed again'. Buffer is right in Frigate, but when I try to add the rest command in configuration.yaml, I get Error: Action rest_command.frigate_manual_event_start not found in the automation trace. Sure enough, can't find the command anywhere in HA, but it appears to be defined correctly in config (and lints properly)
default_config:
# Load frontend themes from the themes folder
frontend:
themes: !include_dir_merge_named themes
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
http:
use_x_forwarded_for: true
trusted_proxies:
- 192.168.254.100
ffmpeg:
rest_command:
frigate_manual_event_start:
url: "http://10.0.0.95:5000/api/{{ camera }}/start"
method: POST
frigate_manual_event_end:
url: "http://10.0.0.95:5000/api/{{ camera }}/end"
method: POST```