Turn on lights

ok. do you have any parts already, the arduino, the sensor, some LEDs... anything?
Could you post a link of your exact sensor, that way we can see what you have.

HazardsMind:
ok. do you have any parts already, the arduino, the sensor, some LEDs... anything?
Could you post a link of your exact sensor, that way we can see what you have.

I'm thinking about using a arduino mini, and I don't know yet what kind of sensor and I would like some advice.

ARD mini is fine, but look at the specs, I think one is 5 volts and the other is 3.3 volts. Most sensors use +5 volts, so make sure you know what your getting.

The ultrasonic sensor look like it has 2 miniture cans on the front, and may protrude outwards. If you want something that be hidden easily, then go with the IR distance sensor. Both should work with the same code.

HazardsMind:
ARD mini is fine, but look at the specs, I think one is 5 volts and the other is 3.3 volts. Most sensors use +5 volts, so make sure you know what your getting.

The ultrasonic sensor look like it has 2 miniture cans on the front, and may protrude outwards. If you want something that be hidden easily, then go with the IR distance sensor. Both should work with the same code.

What ultrasonic sensor would you recommend?

Parallax

I believe one of these three sensors would work out. Wich one is the best? I chose the PING))) Ultrasonic Sensor, the PIR Sensor and the Si1143 Proximity Sensor. All of them from Parallax.

Si1143 Proximity Sensor

You can do multiple hand gestures and program the lights to do different things. It is much more expensive, but it all depends on what you are going to use it for. If you just want to turn the lights on and off then you can go with one of the others, but if you want to spice it up a little then go with that one.

Im not sure if the proximity sensor has its own code, because I know that the other two will work with the same code.

Lvothe:

HazardsMind:
ARD mini is fine, but look at the specs, I think one is 5 volts and the other is 3.3 volts. Most sensors use +5 volts, so make sure you know what your getting.

The ultrasonic sensor look like it has 2 miniture cans on the front, and may protrude outwards. If you want something that be hidden easily, then go with the IR distance sensor. Both should work with the same code.

What ultrasonic sensor would you recommend?

Would a ARD micro work? And how to connect it to the lights? And power?

Would the proximity sensor work with a grill in front of it? For design reasons. And could it be painted? I want this to be an definitive solution.

Yes, a micro will work, but as I said before, you need to know both the micro operating voltage and the sensor voltage. I think both work at 5 volts, if that is true then you are fine.

As for the grill... that you may need to test, because I really can't say.

If you want it east to hide, an IR source and detector LED pair can be hidden behind a piece of smoked plastic flush with the wall. The concept is pretty simple and may not need anything other than the diodes and a few resistors with the Arduino. The IR source and detector can be pretty much side by side as long as the detector doesn't "see" the source beam reflections off the back of the smoked plastic. THen when your hand (or anything else) comes close to the source diode, the IR reflects off it and back towards the detector which the Arduino can "detect" on an input pin and drive a relay to switch the light.

In another forum post, one person found this, I made a slight modification.

int on=0;
If(sensor==HIGH) { // this works

~on; // on !=on should work too

digitalWrite(lights, on ? HIGH : LOW);
}

This would be your simple latch.

The relay could be a mosfet? Also can i dimmer the lights? Usig the pwn output would work? Maybe using the distance as the dimming value?

Yea all would work.

The Parallax Si1143 Proximity sensor has three points where it "senses" if i use one to turn on and off and the other two to the dimming (+ & -) would it be faster? Using the time to increase/decreases the light...

Lvothe:
The Parallax Si1143 Proximity sensor has three points where it "senses" if i use one to turn on and off and the other two to the dimming (+ & -) would it be faster? Using the time to increase/decreases the light...

It would work if it understands which direction it was being swiped from. You might need to make your own swipe code, it shouldn't be too hard though.

Thanks
Also do yoy have a mosfet you would recommend to me?

Look for this part: STP40NF10L

Also this page,Arduino Forum

Swipe code is not that complex, detect and time each led in unsigned long variables and subtract milis().

Breakout breadboard friendly board of Si1143 is available on ebay (search for "Si1143"). If you need sample code you can find it in my other post here:
http://forum.arduino.cc/index.php?topic=155004.0

Si1143 breakout board pictures: