Page 1 of 1

AD410 Not able to connect to home assistant

Posted: Wed Sep 14, 2022 7:19 pm
by Vorms
Hello,
I have an amcrest ad410 door bell.
I am usable to connect to home assistant.
The amcrest smart home is installed on my android phone and work as expected.
In home assistant I enter admin as user is that right?
I enter the password that I wrote in android app.
The firmware version is: ... 7t210220. Where can I find the latest? How can I install it?

Best regards
Thierry Vorms

Re: AD410 Not able to connect to home assistant

Posted: Wed Sep 14, 2022 7:30 pm
by Revo2Maxx
Hello and welcome to the Forum.

My guess is the FW is Current however I will post a FW page that does have some Smart Home products on. My AD410 is said to be current and as per picture looks like yours I am guessing.. https://amcrest.com/firmware
Screenshot_20220914_212718.jpg
Screenshot_20220914_212718.jpg (435.71 KiB) Viewed 18066 times

Re: AD410 Not able to connect to home assistant

Posted: Thu Sep 15, 2022 7:11 am
by jack7

Re: AD410 Not able to connect to home assistant

Posted: Fri Jan 06, 2023 4:12 pm
by junalmeida
You can try the following snippet on your configuration.yaml

Code: Select all

amcrest: 
- host: ip-or-host-name
  username: admin
  password: !secret amcrest
  name: Bell
  resolution: high
  stream_source: rtsp
  scan_interval: 15
  binary_sensors:
    - online
    - crossline_detected
    - motion_detected
    - audio_detected
  switches:
    - privacy_mode
  sensors:
    - sdcard
And the following triggers on automations to:

1. Door bell button press:

Code: Select all

  trigger:
  - platform: event
    event_type: amcrest
    event_data:
      event: CallNoAnswered
      camera: Bell
      payload:
        action: Start
 
2. Person appears

Code: Select all

  trigger:
  - platform: event
    event_type: amcrest
    event_data:
      event: SmartMotionHuman
      camera: Bell
  - platform: event
    event_type: amcrest
    event_data:
      event: SmartMotionVehicle
      camera: Bell
  - platform: event
    event_type: amcrest
    event_data:
      event: CrossRegionDetection
      camera: Bell
      payload:
        action: Start
        data:
          Object:
            ObjectType: Human
*Replace "Bell" with your doorbell name.

Re: AD410 Not able to connect to home assistant

Posted: Fri Jan 06, 2023 4:53 pm
by GaryOkie
not sure if replying to a several month old post is going to reach the OP - but...

for the sake of clarity regarding the AD410 OP question- only the CrossRegionDetection event is relevant for Human Detection. The SMD events are not possible on the AD410. The button press is described succinctly.

Thanks.