Skip to content

Latest commit

 

History

History
58 lines (37 loc) · 2.87 KB

README.md

File metadata and controls

58 lines (37 loc) · 2.87 KB

Doorbell

A raspi hack for the golmar video doorbell.

Warning! This is an amateur project to hack a specific brand/model of a video doorbell. Your model may be completely different and use other voltages and signals, take care of measuring everything before trying this at home. The author does not take any responsibility for any damage or harm that may happen.

Work In Progress

These are some hacks for the Golmar Tekna Plus SE video-doorbell (it usually comes in a kit) that allow you to stream the video to HomeAssistant via rtsp and interact with the door when someone rings the bell.

The Video Stream folder contains a script to capture the video using an EasyCap dongle connected to a Rpi2 and the controller will get the doorbell signal and notify the HomeAssistant via mqtt.

Electronics

The doorbell signal comes from the terminal labelled with SA, it provides an up signal when idle and then goes down three times to indicate that someone rang the bell. After measuring the signal it looks that there's sometingh similar to the part on the right of this schema, thus we are going to use a voltage divider to get the up signal of about 3V needed by the RPi in a GPIO pin:

CircuitLab Schematic q834z6cv223j

Furthermore, we need to close a circuit between the AP+ terminal (Aux Push Button) and ground when we want to open the door, so we will use a relay to close this circuit. As the relay needs some more power than the 3.3V provided by the RPi GPIO, we will also use a transistor to feed 5V to the relay. Something similar to this simulation:

CircuitLab Schematic 854g8u79k3q7

The complete circuit will look something like this:

CircuitLab Schematic e6j49denkbd4

BOM

  • A Raspberry Pi 2 or superior
  • An EasyCap dongle
  • Two 1KΩ resistor
  • One 20KΩ resistor
  • Two 1N4148 diodes
  • A 2N2222 Transistor
  • A Relay
  • Terminals
  • Soldering Iron
  • Perfboard or any solder board of your preference
  • Several colors of 22 gauge wires

TO-DO