Sunday 15 February 2015

arduino - What type of relay should I use to trigger an apartment door buzzer?


I'm working on my first hardware project, an SMS web app that will submit (via Arduino) a signal to press the buzzer at my apartment building. As such, my vocabulary might be way off.


That said, I think I need a "relay" to close the circuit at the buzzer and unlock the door.



The project is almost done, except for this last piece. How can I figure out what part to buy? How do I test it so I don't mess up my Arduino? I have a starter's kit but I've never used a multimeter, for example.


Thanks!



Answer



You need a relay with a normal open (NO) contact. You don't have to switch high currents, so a low power relay will do. Nevertheless the Arduino output will probably not be able to drive the relay directly (it wants too much current to activate), so you'll need a transistor to drive it, like this:


enter image description here


Pick a relay with a coil voltage equal to the voltage you have available (the "+12V" at the top). The diode protects the transistor, and can be a 1N4148 (most common general purpose diode).
The relay contact of course goes parallel to the door-opener switch.


This could be an appropriate relay.
edit: in this question Federico notes that there are different coil power versions of that relay. Unless you expect strong vibrations or shock choose the 150mW version.


This relay may be even better: low coil voltage versions available, like 3V and 5V, and requires very low power.



No comments:

Post a Comment

arduino - Can I use TI's cc2541 BLE as micro controller to perform operations/ processing instead of ATmega328P AU to save cost?

I am using arduino pro mini (which contains Atmega328p AU ) along with cc2541(HM-10) to process and transfer data over BLE to smartphone. I...