I’m trying to get local control of my Wyze cam. I replaced the factory firmware with thingino firmware. I installed the frigate add-on and integration in my HA OS instance. I already had MQTT working via the mosquito broker to get data from my car through onstar. I created a user profile specifically for MQTT in HA and gave it access. I can see the camera feed in the Frigate integration, so that part is working. However, when I try to access any of the camera sensors or configuration settings through the Frigate integration they all say unavailable.
When I set up the frigate.yml file I added the host and user/password info but I’m not sure if it will work because I’m using a domain server for all access to HA, both local and internet. Here is the code with the sensitive info changed:
mqtt:
host: https://homeassistant.ddns.net/ #Insert the IP address of your Home Assistant
port: 1883
topic_prefix: frigate
client_id: frigate
user: mqtt-User #Change to match the username set in your MQTT Broker
password: password #Change to match the password set in your MQTT Broker
stats_interval: 60
cameras:
Nursery: #Change this to a name of the camera that makes sense to you
ffmpeg:
output_args:
record: preset-record-generic-audio-aac #Insert this if your camera supports audio output
inputs:
- path: rtsp://thingino:thingino@192.168.68.67:554/ch0 #Change as per your camera documentation for high quality feed
roles:
- record
- path: rtsp://thingino:thingino@192.168.68.67:554/ch1 #Change as per your camera documentation for low quality feed
roles:
- detect
detect:
height: 360 #Change this to match the resolution of your detection channel (in this case channel 1)
width: 640 #Change this to match the resolution of your detection channel (in this case channel 1)
fps: 10 #This is the frame rate for detection, between 5-10 fps is sufficient.
record:
enabled: true
retain:
days: 0 #The number of days a recording will be kept for after a motion is detected.
mode: motion
events:
retain:
default: 30 #The event data will be kept for 1 day. After this period, the event data will be automatically deleted.
mode: motion
objects:
track:
- person
- car
version: 0.14
Any ideas on what I’m doing wrong? I’ve been at this for hours and haven’t made any headway. Thanks in advance!
1 post - 1 participant