AD410 Not able to connect to home assistant

Have some questions or having issues with Software that is not currently listed? Post them here for the mods and other users to assist you.
Post Reply
Vorms
Posts: 5
Joined: Wed Sep 14, 2022 7:09 pm

AD410 Not able to connect to home assistant

Post 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
User avatar
Revo2Maxx
Site Admin
Posts: 5906
Joined: Sat Jun 15, 2019 3:05 pm

Re: AD410 Not able to connect to home assistant

Post 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 6070 times
Be Safe.
junalmeida
Posts: 6
Joined: Thu Jun 30, 2022 10:40 am

Re: AD410 Not able to connect to home assistant

Post 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.
GaryOkie
Posts: 418
Joined: Mon Apr 27, 2020 7:23 pm

Re: AD410 Not able to connect to home assistant

Post 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.
Post Reply