Pretty new to HA and i am using latest container image with Reolink custom integration by GitHub - JimStar/reolink_cctv: Home Assistant Reolink NVR/cameras addon.
I have 2 cams and currently i am testing a Reolink Dome Poe (i think it’s RLC-520). I can get reolink_cctv integration to add my cam, but i can’t get the automatic motion recording to work.
I am aware that HA needs to available over HTTP (and not TLS) for this to work. Here is the part of motion detection and recording.
- id: '1671729456880'
alias: New Automation
description: ''
trigger:
- type: motion
platform: device
device_id: 69e23576c379166ecb6c4a23dffbdfb0
entity_id: binary_sensor.rldome_motion
domain: binary_sensor
for:
hours: 0
minutes: 0
seconds: 1
condition: []
action:
- service: camera.record
data:
filename: /media/recordings/{{ '{{ entity_id.entity_id }}' }}_{{ now().strftime("%Y%m%d-%H%M%S")
}}.mp4
target:
entity_id: camera.rldome_sub
mode: single
It works when i trigger a run of the automation manually. There is no log of motion being detected at all. I have the cam inside the house for testing, but when i move infront of it, no recording is done.
I am not using PoE atm, but powering over 12V input!The other cam i have is Reolink Bullet (RLC 410 i think).
Any help is appreciated!
Thanks! (Apologies if the category is wrong for this post)