Get a phone notification when a traditional doorbell rings

Wire a contact sensor in parallel with an existing wired doorbell chime so pressing the doorbell also sends a phone notification, without replacing the doorbell itself.

Best for: A household with an existing wired doorbell and chime, and someone comfortable doing simple low-voltage wiring or willing to have it done once.

Not for: A doorbell that is already a smart doorbell, or a household not comfortable with any wiring, even low voltage. A standalone smart doorbell may be simpler in that case.

Why this exists

Not everyone wants to replace a working doorbell with a smart one, especially if the traditional chime is loud enough indoors but easy to miss from the backyard or a distant room. Wiring a contact sensor in parallel with the existing chime adds a notification without changing how the doorbell itself works.

What I used

Job Good enough Never think about it Notes
Detect the doorbell press No personally verified recommendation yet No personally verified recommendation yet This job specifically needs a contact sensor with external wire terminals, which is a different requirement than a standard door or window contact sensor.

See recommended gear for the job-first checklist. Product recommendations and any future affiliate relationships are explained in the disclosure.

Logic

IF the contact sensor changes state AND it has not changed state again within the last 10 seconds THEN send a phone notification: "Someone is at the front door"

Setup notes

  1. Turn off power to the doorbell transformer before doing any wiring.
  2. Connect the contact sensor’s external wire terminals in parallel with the doorbell chime’s existing wiring, so the original doorbell circuit is unaffected.
  3. Restore power and test by pressing the doorbell button; confirm the sensor changes state in the platform’s automation log.
  4. Add a short debounce delay, such as 10 seconds, so a single press that causes more than one signal does not send duplicate notifications.
  5. If unsure about any part of the wiring, consult an electrician; doorbell transformers are low voltage but the wiring should still be done carefully.

Advanced features

Quiet hours behavior

Reduce or silence any accompanying chime sound overnight while still sending the phone notification, so a late visitor does not wake the household unnecessarily.

Visual alert for accessibility

For a household member who is hard of hearing, add a light flash as part of the same automation so the doorbell is noticeable without relying on sound.

Failure modes

Done when

FAQ

Do I need to replace my doorbell with a smart doorbell?

No. This recipe wires a contact sensor in parallel with the existing chime, so the original doorbell keeps working exactly as before, and a notification is added on top.

Is it safe to wire into the doorbell chime?

Doorbell transformers are typically low voltage, around 16 to 24 volts AC, but power should still be turned off before any wiring work, and anyone unsure should consult an electrician.

Why do I need a debounce delay in the automation?

A doorbell button can send more than one signal for a single press. A short debounce window after the first trigger prevents multiple notifications for the same ring.