Tell me more ×
Electrical Engineering Stack Exchange is a question and answer site for electronics and electrical engineering professionals, students, and enthusiasts. It's 100% free, no registration required.

I'm new at the forum, registered today.

Well, I want to make an system which can be activated by a remote control, or even by a switch.

The meaning of it all is to TURN ON something wirelessly, something simple such as an LED.

I have known that I could use RELAY in order to do such thing, but I am not quite sure if its true.

What I'll need in order to do it, what knowledge I need?

share|improve this question
1  
How would a switch or a relay be wireless? There are so many ways you can wirelessly send a signal (i.e. IR, RF, bluetooth, wifi, etc.) What do you have in mind? Need more details. – capcom Oct 3 '12 at 1:01
1  
Not really enough information here. Remote control is one type of system, a switch is another, a relay is a third one altogether. What exactly are you trying to accomplish? Please edit your question for us to help you out. – spearson Oct 3 '12 at 1:01
I want to simply send a signal to a circuit in order for it to activate, my final achieve is to open a door using a servo with a remote control – Guilherme Garcia da Rosa Oct 3 '12 at 1:18

1 Answer

up vote 0 down vote accepted

If it's line of sight, then a simple way would be to use an IR transmitter and IR detector. The transmitter can be an IR LED pulsed at the receivers frequency (use a microcontroller, 555 timer, PWM IC, etc for this) this will create a logic high at the receiver output which can be used to trigger your circuit.

The transmitting driver can be something like below, using an NPN transistor driven from your PWM source (note that this example shows 36kHz, the receiver below uses 38kHz - the principle is exactly the same):

Transmitting circuit

At the receiver you can see how it turns into a logic high (the bottom waveform):

Tx and Rx waveforms

Here is an example of a 950nm IR LED, and a 38kHz IR receiver. TO produce a logic high at the receiver, you send a stream of pulses at 38kHz with ~50% duty cycle.

Related circuits:

Here is a PIC based IR remote project.
Simple but reasonable CD4017 based circuit.
Not a great circuit, but very simple. May be informative to play around with.
You may want consider buying a module like this one that can be used to control quite a hefty load (up to 12VDC/10A or 240VAC/5A)

Some more reading:

Remote Basics (images above from here)
Adafruit on IR sensors

RF solution:

You say you have some walls in between the sender/receiver, so an RF solution is they way to go in this case. Since it's just an on/off signal that needs to be transmitted, we can use very simple OOK/ASK Rx/Tx modules like this one:

ASK Module

The above is just an example, it basically just outputs at the Tx what goes in to the data pin on the Rx. There are many more on eBay if you search for "RF module", of varying types. Also places like Farnell, Mouser, Digikey sell various modules (purchasing from one of these is preferable for more complex modules as they are of a certain quality and come with a datasheet)

share|improve this answer
You rock! thanks – Guilherme Garcia da Rosa Oct 3 '12 at 4:02
1  
Similar circuit but with encoded signal: ep.com.pl/files/6339.pdf Article is in polish but you should be able to figure out what is what. – Szymon Bęczkowski Oct 3 '12 at 6:35
Oli, I realised that simply a IR system wont be quite the solution to my mainly problem, I will probably be needing 32ft (10m) of distance, and that would work with walls in the middle, what could I use? that holds the same purpose of a IR remote – Guilherme Garcia da Rosa Oct 3 '12 at 17:16
@GuilhermeGarciadaRosa - I edited the answer to include an RF option. – Oli Glaser Oct 3 '12 at 22:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.