I'll go for a long shot. Could this integration add in Entity ID's from Home Assistant in one of the TEXT customer overlay fields? Otherwise...I (and others) may have to learn templating or scripting.
ah yes. I forgot the regular automation. With all the new versions of late, I forgot they made things....easier. I'll give that a shot.That's not something that should be added to the Dahua integration. That's all totally doable with a Home Assistant automation. You'd just setup an automation to trigger on whatever you want, could even be time, and call the service to set the overlay based on the reading of your weather station
Just so I am on the right track.. I can somehow enter in a entity value into the text overlay fields? I have some research to do this weekend. Or is this more of a YAML job?That's not something that should be added to the Dahua integration. That's all totally doable with a Home Assistant automation. You'd just setup an automation to trigger on whatever you want, could even be time, and call the service to set the overlay based on the reading of your weather station
I was able to succesfully use your integration for an Amcrest AD410 video doorbell.This is the initial release, you’ll have to manually add the repo to your HACS integration until it’s officially added (that’s pending a PR review)
It doesn’t support PTZ yet becaise I don’t have a cam to test with.
Seeking feedback on anything that’s broke and missing features/services you’d like to have built in. Thanks!!!
GitHub - rroller/dahua: Dahua Camera and Doorbell Home Assistant Integration
Dahua Camera and Doorbell Home Assistant Integration - rroller/dahuagithub.com
Are you using Blue Iris at all? Or going straight from doorbell camera to home assistant?I was able to succesfully use your integration for an Amcrest AD410 video doorbell.
Only how am I supposed now to add an automation to get ie. a notification when the doorbell button gets triggered?
View attachment 99758
I still gotta tinker with the doorbell part of this integration. Very cool you added triggers to entities as that solves the 'need doorbell chime to work as a regular doorbell'. I 1/2 finished running 8" speakers in all rooms just for general notifications. I'll have some kind of sound play (doorbell sound or British butler sound or something) through all speakers when VTO button is pushed.
yep! That worked for me. Added the VTO to the integration. Setup a new automation so that when VTO button is pressed, my S2 siren does a doorbell sound AND turns on my smart tv with UI3 running so I can immediately see who is there. I love this integration! Just makes things sooooo much easier.@Cr4z33 this is how I do it...
yep! That worked for me. Added the VTO to the integration. Setup a new automation so that when VTO button is pressed, my S2 siren does a doorbell sound AND turns on my smart tv with UI3 running so I can immediately see who is there. I love this integration! Just makes things sooooo much easier.
simply amazing this integration has solved a couple years worth of " I wish it could do this or that without needing to be a brain surgeon"
alias: Synch Doorbell
description: ''
trigger:
- type: sound
platform: device
device_id: 97d81882261f35c08b40b13f859c66d0
entity_id: binary_sensor.doorbell_button_pressed
domain: binary_sensor
condition: []
action:
- type: turn_on
device_id: 58402c5f3c20cfa5ce5f03f16fd146a9
entity_id: switch.doorbell_relay1
domain: switch
- service: camera.snapshot
target:
entity_id: camera.doorbell_main
data:
filename: /config/www/tmp/Visitor_alert.jpg
- service: notify.livingroomtv
data:
message: Someone's at the door !!!
title: Front Door
data:
duration: 20
fontsize: max
position: bottom-right
transparency: 50%
color: grey
interrupt: 1
file:
path: /config/www/tmp/Visitor_alert.jpg
- service: delete.file
data:
file: /config/www/tmp/Visitor_alert.jpg
mode: single
are you actually using YAML to program everything? I am using the GUI as seen in the pic above.Yep agreed! This integration is sweet...
I have my VTO in BI for 24/7 recording, as well as motion detection which sends me alerts.
Then I also have it in the HA integration so I can have the feed on a dashboard page, and I have an automation that triggers on the button press - this then fires off the old-style doorbell and throws a popup alert on my TV with a snapshot.
For the doorbell, I took out the old button outside and wired it straight through, and put a Shelly 1 running ESPHome behind the transformer.
Here's the automation:
YAML:alias: Synch Doorbell description: '' trigger: - type: sound platform: device device_id: 97d81882261f35c08b40b13f859c66d0 entity_id: binary_sensor.doorbell_button_pressed domain: binary_sensor condition: [] action: - type: turn_on device_id: 58402c5f3c20cfa5ce5f03f16fd146a9 entity_id: switch.doorbell_relay1 domain: switch - service: camera.snapshot target: entity_id: camera.doorbell_main data: filename: /config/www/tmp/Visitor_alert.jpg - service: notify.livingroomtv data: message: Someone's at the door !!! title: Front Door data: duration: 20 fontsize: max position: bottom-right transparency: 50% color: grey interrupt: 1 file: path: /config/www/tmp/Visitor_alert.jpg - service: delete.file data: file: /config/www/tmp/Visitor_alert.jpg mode: single
are you actually using YAML to program everything? I am using the GUI as seen in the pic above.