Maker Pro
Maker Pro

need help creating a circuit (struggling)

i am trying to make a receiver circuit for a sort of security alarm type thing i am making. The idea is that this circuit will receive an infa red signal from the transmitter circuit and then when that signal is interrupted a buzzer and flashing LED will be set off until the circuit is reset. I have got some components in that i will need but i have no idea where things need connecting or if i need more components. Please help. thanks in advance.upload_2016-11-4_19-33-51.png
 
Welcome to EP!
Your project is doable but, for reliable operation, the circuit will need a LOT of components. The main problem is that there are many infra-red sources all around us, including sunlight, incandescent lamps, human/animal bodies, TV remotes etc; so the circuit has to discriminate between IR received from those unwanted sources and your IR transmitter. To eliminate most interference you will need to use modulated IR transmission (such as TV remotes do), and a matching receiver. Modules for doing this are available, but a DIY version could be home-brewed.
 
hi. sounds pretty simple, and you will make it even easier on yourself if you utilize microcontrollers (MCU).

first the easiest part: IR transmitter (aka plain simple IR LED). The current will need to be limited because once it opens up, it really opens up and happy let as much current through it as it can - this will destroy the LED.
So add a resistor in series. Doesn't matter if you place it near the Anode (+) or Cathode (-), if the current wants to go through the LED, it will have to go through the resistor too.
In essence you use the resistor to burn off some voltage, thereby effectively reducing the voltage immediately across the LED. Find more about this online.

For the receiver, you will get an IR phototransistor. It will let current pass if light shines on it.

The MCU can be used in such a way that it turns the IR transmitter on and off very fast. It could be a square wave but later in your design you can encode it in some way.
You can probably drive more current through the LED if it is only on momentarily.
The receiver will pick out the square wave. During the off-period, it can measure the background light level.
The square wave will kind of give the receiver an idea what to look for, you will probably get better sensitivity.
Depending on how strict you want to enforce this pattern or code, it may be very difficult for an intruder to spoof your system.
 
Top