Arduino Stroboscopic Light

by TheSuperSewcio. in Circuits > Arduino

12663 Views, 126 Favorites, 0 Comments

Arduino Stroboscopic Light

strob.png

Here is the tutorial how to build strobe using the Arduino.

Marerials

20160212_152949.jpg

You will need:

- Arduino board,

- 220 Ohm resistor,

- LED,

- 2 potentiometers,

- Battery.

Building

strob.png
20160212_155305.jpg

Everything you need is in the picture. There is also my circuit.

You can use more LED's if you want to have stronger light.

Software

Program for Arduino:

int pot1;

int pot2;

int val;


void setup() {

pinMode(9, OUTPUT);

}


void loop() {

pot1 = analogRead(0) * 30;

pot2 = analogRead(1) * 5;

val = 1025 * 5;

val = val - pot2;


digitalWrite(9, HIGH);

delayMicroseconds(pot2);

digitalWrite(9, LOW);

delayMicroseconds(val + pot1);

}

Download:

Downloads

How It Works

20160212_163526.jpg
20160212_164810.jpg

Stroboscopic light is a type of light that turns On and Off very fast (more than 100 times per second), too fast for human eyes. Mostly it's giving amazing effects, but it can also be dangerous.

To show you when, I've made engine from my LEGO bricks with rotating yellow blrick. There was nothing special until I turned On the srtoboscopic light and regulate it with potentiometers.

It looks awesome, almost staying still, but keep your fingers away!

Conclusion

TNPP258.JPG

Stroboscopic light is produced by fluorescents, thats why they are always paired - when first is turned On second is turned Off, few microseconds later first is Off and second is On, and over and over again.

You can also find it on some parties - it creates nice effects when someone is moving next to it.

---

Build your own strobe and enjoy the effects!