Skip to content
Discussion options

You must be logged in to vote

Looking at your configuration, I can see the issue: MQTT is disabled in your config file(1).

Your config shows:

mqtt:
  enabled: false
  host: 192.168.1.100
  user: "{FRIGATE_MQTT_USER}"
  password: "{FRIGATE_MQTT_PASSWORD}"

The enabled: false setting means Frigate is not listening to MQTT commands, even though your Python script is successfully publishing messages to the MQTT broker(1).

To fix this, change enabled: false to enabled: true in your MQTT configuration(1):

mqtt:
  enabled: true
  host: 192.168.1.100
  user: "{FRIGATE_MQTT_USER}"
  password: "{FRIGATE_MQTT_PASSWORD}"

After making this change, restart Frigate. Then your MQTT commands to frigate/<camera_name>/detect/set should w…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@BruceLawton
Comment options

Answer selected by NickM-27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment