View allAll Photos Tagged Arduino,
3 led luxeon manejados con arduino.
pwm amplificado con un transistor bc547
This is a frame from a video. You can watch it on Vimeo.
Software portion of the controller on Vimeo
Note: the pins on the TIP102 are incorrect in this photo. This setup fails to operate. Pin 1 is the base, 2 the collector, 3 the emitter.
Testing eia 485 communication on unused twisted pairs of an ethernet cable.
Read article on www.eraclitux.com
I've spent the weekend nusing a horrible cold and decided I needed a colour cycling mood lamp to make me feel better ;-)
The color cycling is caused by dimming and brightening a red, green, and blue LED at different rates. The problem is sometimes by chance they're all bright, other times they're all dim. So in addition to the color cycling, there's pseudo-random luminosity cycling. It's much more annoying in person than it was in the video.
So I took the previous code and adjusted it to maintain a reasonably constant brightness level.
It was mostly just 4 lines:
float sum = redVal + greenVal + blueVal;
int adjRedVal = (float)redVal/sum * targetBrightness;
int adjGreenVal = (float)greenVal/sum * targetBrightness;
int adjBlueVal = (float)blueVal/sum * targetBrightness;
If I was actually going to leave it going rather than just playing around with it, I'd slow down the cycling too.
Turned a Rubbermaid food storage container into a case to carry my Arduino in my bag on my bicycle.
For Bread Bike Blog
Turned a Rubbermaid food storage container into a case to carry my Arduino in my bag on my bicycle.
For Bread Bike Blog
We had a guest come and show students in Mark Snyder's Electronic Music class how to use an Arduino board and some potentiometers to build a basic synthesizer.
Evento em agosto de 2014 no Olabi, Rio de Janeiro. Mais informações: www.olabi.co
Crédito: +5521 Fotografia www.facebook.com/mais5521?fref=ts
Got the arduino's inline LED blinking...the hello world of hardware.
Some notes for myself about a mini arty/led-y project I want to build:
* Extend the number of output pins on the arduino using a shift register (http://www.arduino.cc/en/Tutorial/ShiftOut)
* sparkfun is a good place to buy
* I need to get a breadboard, a soldering iron, a bunch of leds, a 595 for the shift register
I interfaced my Arduino to the Parallax PING ultrasonic distance measuring sensor. Here's the writeup: antipastohw.blogspot.com/2007/12/arduino-with-parallax-so...