LED

From Fab Lab Bcn WIKI
Revision as of 22:18, 10 December 2010 by 85.50.111.151 (Talk)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

A light-emitting diode (LED) (Template:Pron-en, L-E-D<ref>Template:Cite web</ref>) is a semiconductor light source. LEDs are used as indicator lamps in many devices, and are increasingly used for lighting. Introduced as a practical electronic component in 1962,<ref name=LemelsonMIT/> early LEDs emitted low-intensity red light, but modern versions are available across the visible, ultraviolet and infrared wavelengths, with very high brightness.

This page focus in driving LED's and RGB LED's using small microcontrollers as the [Arduino] platform.

Arduino LED's basics

LED's and RGB LED's Controllers for Arduino.

(most of the examples are compatible with other mricrocontrollers paltforms)

Arduino can drive RGB's using its PMW Outputs (AnalogWrite). Considering we need 3 of them for each RGB LED's and the Arduino has just 6 one could thing the maxium number we could drive are 2 LED's. Luckly there are a bunch of chips that can easily expand our Arduino PMW ports allowing us to drive a huge number of RGB LED's easily but also any other kind of device that require these outputs as standard LED's or DC Motors.

TLC5940

TLC5940 is a 16 channel PWM unit, so you can drive 5 RGB's LED's. There's an arduino library to easy work with it.

File:Http://students.washington.edu/acleone/codes/tlc5940arduino/img/breadboard-arduino-tlc5940.png

M5451

M5451 is a chip specifically designed to drive up to 70 LED's . There's an arduino library to easy work with it that implements PMW support.


File:Http://students.washington.edu/acleone/codes/tlc5940arduino/img/breadboard-arduino-tlc5940.png



Packet solutions

ShiftBrite

ShiftBrite is a packet modular RGB LED. There's an arduino library to easy program it.





The M5450 is a chip specifically designed fro driving LED's and there's an arduino Library for easy working with that

LED Driving chip - M5450 http://www.datasheetcatalog.org/datasheet2/e/0zqj6og5wcoq8y1zyxt7r79056py.pdf


Packet solutions

Rainbowduino is a packet Arduino compatible soultion for driving RGB LED's http://www.seeedstudio.com/depot/rainbowduino-led-driver-platform-atmega-328-p-371.html?cPath=93_99




Driving RGB LED's requires the use of

http://www.arduino.cc/playground/Learning/TLC5940


  • RGB to Hex Conversion [1]
  • Intergacing the Shift Library [2]