Display made out of hundreds of seven segment LEDs

While huge LED panels are a relatively common project du jour for people wanting to flex their engineering muscle, we’re taken aback by the sheer beauty of [Skot9000]’s huge LED display made of seven-segment displays. He calls the build DigitGrid, and it’s a wondrous display the likes of which we’ve never seen.

To build a display based on seven-segment LEDs, [Skot] went with a modular approach in designing the DigitGrid. To power and control all these seven-segment displays, [Skot] used a Texas Instruments TLC5920 to run four 4-digit displays as a single module. Four of these modules connect together to form a row of 32×2 digits, and eight rows of digits come together to make a 512-digit display. With seven LEDs for each digit, that works out to 3,584 4,096 individual LEDs for the entire panel.

To power and control this gigantic array of LED displays, each row uses a PIC16F microcontroller which, in turn, is controlled by an FPGA. After several hours of writing Verilog, [Skot] had a reasonably good hunk of software that allowed him to send frames from his computer to the display. The results, quite simply, are amazing. [Skot] managed to put up a short film showing off the animation capabilities of his new display, and it’s a wonder to behold. You can check that video out after the break.

[Read more…]

ATtiny44 drop-in replacement for Ikea Dioder's stock PIC controller

The Ikea Dioder is an LED light sold at the big blue and yellow building that lets you mix your own colors using a simple button and wheel controller. [Marco Di Feo] looked at all of the other projects out there that alter the controller and figured out that the IC can be directly replaced with an ATtiny44 microcontroller. With that chip soldered onto the board he added IR control so that he can change colors using his universal remote control (translated).

[Marco] removed the potentiometer normally responsible for selecting the color. This frees up one pin on the microcontroller which he then uses to receive signals from a TSOP1736 IR receiver. The video after the break shows the device, which illuminates the back of his home entertainment center, reacting to commands from his remote control.

Of course this can be done without the chip swap as the PIC 16F684 that comes with it can be reprogrammed in place. But [Marco] didn’t have a PICkit or other programmer on hand. [Read more…]

Arduino aquarium lights

[Kalle Hyvönen] just finished building his own aquarium lights. He used four powerful soft-white LEDs, mounting them on a pair of heat sinks to keep things cool. Now he could have just connected them to the power supply and plugged it into the wall, but instead he included is own controller. An Arduino drives the switch-mode power supply, offering dimming thanks to PWM, and the ability to automatically switch the light on and off using an RTC chip with a battery backup. The sketch includes the ability to alter the lighting schedule and other variables by sending serial commands through a USB connection. This protocol is detailed with comments in his sketch.

We’ve seen a lot of interesting aquarium light projects. This one that uses heat from the LEDs to warm the water is one of our favorites. Others are full of features like this version that includes a moonlight mode. But Arduino enthusiasts don’t have to look far to find offerings like this PAR meter build, or this aquarium light controller library which can be recreated using the ubiquitous controller board.

Baby's first star light projector and a foil slip ring

For a newborn, everything is magical; a lack of object permanence means everything is new, wonderful, and novel. What then, could be better than a projected star field circling an infant’s room, gently sending them to sleep?

[Pete] was inspired by this earlier starlight projector that projects a rotating star field onto the walls and ceiling of a nursery. Instead of a rather loud servo, [Pete] used a quiet 12 Volt gear motor that spins the star field at 5 RPM. Like the previous build, a LED was used but [Pete] found a color-changing RGB LED that automatically shifts colors.

The shaft of [Pete]’s gear motor is tiny, and unlike the servo, there’s constant rotation. This meant a slip ring was needed to pass electricity into the spinning sphere. A piece of copper foil and a pair of improvised brushes served just fine. While [Pete]’s project, like its predecessor, doesn’t seem to have any recognized constellations drilled into the sphere, the foil slip ring opens up the possibility for a small microcontroller being fitted inside the globe with blinking lights.

Check out the video of [Pete]’s build in action after the break.
[Read more…]

Tearing down a failed LED bulb

todd-harrison-led-bulb

[Todd Harrison] was thinking of replacing some incandescent light bulbs in his house with LED models, so and his wife picked up a single candelabra bulb to test before they spent the cash to swap them all out. The bulb died in about a week’s time, so [Todd] got out his trusty electronic disassembly device (his hammer), sharing his post-mortem examination with us.

After taking a cursory look at it, [Todd] found that the circuit powering the bulb was not overly complicated. A small bridge rectifier along with a few caps and resistors are all that was used to power the device, making it’s failure a bit puzzling. When [Todd] wired it up to his power supply, the bulb lit up, much to his surprise. His best guess as to why it died is that the shrink wrap around the PCB managed to cause a short, though he also noticed that one of the bridge rectifier’s legs was not soldered down.

He started tooling with the light to find out more about it, but he managed to blow out a handful of LEDs in the process. All in all the LED lighting swap was a disappointment, but at least he had some fun along the way!

Continue reading if you’re interested in seeing [Todd’s] diagnosis in its entirety.

[Read more…]

Color changing coaster has a built-in drink detector

[Robert] put together his own illuminated coasters that know when they hold a drink. They look fantastic, thanks to professionally produced PCBs and a layered, laser-cut acrylic case. They’re much like the pagers given to restaurant-goes who are waiting for tables, but this version is much fancier (and doesn’t include the vibrating/paging feature).

The RGB-LED board is a previous project which was developed using eight surface mount RGB LED modules around a circular board. It uses an ATmega168 paired with an MBI5168 constant-current LED sink driver. The coaster enclosure gave him room for a few more items, like the pair of AA batteries which work in conjunction with a boost converter to power the device. It also houses an IR reflectance sensor which is used to detect the presence of a drink on the coaster. This is important since an on-occupied coaster looks like it would be blindingly bright if there wasn’t a glass to diffuse the intensity of the LEDs.

He mentions that incandescent light bulbs mess with the IR reflectance sensor. But there must be some way to account for ambient conditions with the code, right?