A Giant DIY LED Display
smf28 writes "Dheera Venkatraman has created a giant DIY LED display featuring 36 blue Luxeons in a 6x6 array on the windows of Simmons Hall, an undergraduate dormitory at MIT famous (or infamous, if you wish) for its design. Recent uses included welcoming students in September, Pirate Day, and others."
Another fine use for PICs. I love these things...
Nothing in the world is more dangerous than sincere ignorance and conscientious stupidity.
Trust slashdot to put the lights out! Someone should build a mirror array.
Reminds me of whay 0cool(Crash Override) did in the movie "Hackers" with the building lights: spelt out "Crash and Burn"
http://www.blinkenlights.de/index.en.html
:)
And I *know* there was a Dutch team that did much the same as well, and a Dutch commercial venture (was it KPN - Dutch telecom?) has one still up and running, I think.
But I guess they didn't use the Ooh! Shiny! blue LEDs
I have some other examples of projects like this listed here. Very cool job by the MIT guys ... now they just need to add some more of 'em in all of the windows and provide the ability to generate alphanumber (or image) messages that can be uploaded from the Internet - heh, heh! ;-)
Hulk SMASH Celiac Disease
If they're really clever, they could sell advertising and offset the cost of adding to the array. I'm betting companies like Intel, AMD, IBM, Dell, etc would be willing to part with a little cash for some display time on a building/billboard at MIT.
"We need babes now!" doesn't fit on a 6x6 array.
Make the array bigger and put Tetris on that thing, kind of like these guys or even these guys.
This is the deal: MIT consists of geeks who need to feel they're somehow noticed in the world -- because nobody notices geeks and specially not ones in Boston. So they do bullshit stuff like this 6 x 6 array. Which nobody except slashdotters notices...
You really, I mean, you really couldn't just say how big this "giant" display is?
Being a crontrols system desiger, I hope some of the goofs of industry look at stuff like this. I am constantly yelling at my vendors that I don't need a super screwed up version of RS232/485/422 etc to network sensors around a machine......binary and ASCII protocols WORK GREAT for stuff like this. KISS (Keep it Simple and Stupid). A few micros some twisted pairs and your basic switcher......bingo big network of fun.....if you need some more bandwidth, throw Ethernet at it. I've been saying this for over 10 years and still all the big players want to sell you a "Field Bus". I hope some of the MIT guys move in with the big guys...and slap some sense into them.....rant off.
The microcontroller should have a separate supply, and as the consumption of the PIC is so low this could be derived simply by passing the LED supply through a small low voltage drop diode (Schottky diode) and preferably a suitable inductor, and then decoupling it with electrolytic and ceramic capacitors (say 1000uF and 100nF) in parallel as close to the Vcc pin as possible. With this arrangement, the LED Vcc can even momentarily drop to zero and the microcontroller will just keep running.
(In fact, if you are thinking of doing this from scratch, you do not need an expensive supply at all. Rectify the output of a transformer directly to provide pulsating DC (100Hz Europe, 120Hz US.) This is the LED bus. You can do that with a 35A 50V bridge rectifier bolted to a nice big alumin(i)um strip. Then pass the output through a diode, a suitable resistor, and stabilise it with a 5.1V Zener. Assuming a peak of about 8V from your transformer, a 1A Schottky, a 10 ohm 3W wirewound resistor and a 5W 5.1V Zener will do just fine, with maybe a 1000uF electrolytic and a 100nF ceramic to stabilise the voltage at the PIC and provide enough surge capacity to drive the MOSFET gates. That way, you avoid the major disadvantage of switching power supplies, which is that they do not like rapidly varying loads.
Oh, another thing. Do not put a resistor between the PIC and the MOSFET gate. Use a driver chip to translate the current levels. Cheap insurance.
Pining for the fjords
Now why are you powering the LEDs with the pulsating DC? I know no one is going to notice the flashing because the frequency is too fast. Im a engineering student who only just recently figured out how a walwart works and why its so heavy.
Ooo man the floppy drive is broken. No wait. The computer is just upside down.
The Big Round Cubatron is a much bigger, much cooler DIY LED display. It was the cool thing at this year's Burning Man.
...well, you get the idea.
Videos here, here, here,
Comic book guy.
probably one of the largest and oldest "on building" light displays:m enu=skfvwg#IMG_8603
The SKF building in Schweinfurt, Germany. http://mpics.teamone.de/cgi-bin/index.cgi?sort=1&
Sorry, I dont see why this is a story. The technical difficulty of this is something like "my first microcontroller project" from "toying with electronics 101". The implementation is not even that interesting. (Multiplexing anyone?). The novelty is almost zero (giant LED display.. uhhh). Yes, it is at this geek university, but that is the only real point about this story i can see.
In 1995, Electrical Engineering students of Delft University of Technology did this, with playing Tetris on their 100m high building.t rum/90/english.html
t rum/95/english.php
e lco/matrixx/
Link: http://www.etv.tudelft.nl/vereeniging/archief/lus
In 2001, they used their building as a big SMS display.
Link: http://www.etv.tudelft.nl/vereeniging/archief/lus
In 2006, a huge 8x4x2m LED MatriXX was created.
Link: http://www.etv.tudelft.nl/vereeniging/commissies/
#include [16F877A.h]
#device adc=8
#use delay(clock=10000000)
#use rs232(BAUD=9600,XMIT=PIN_C6,RCV=PIN_C7,ERRORS)
#fuses WDT,HS, NOPUT, NOPROTECT, NODEBUG, BROWNOUT, NOLVP, NOCPD, NOWRT
#define address 0
void main() {
int i=1,a,b,d,e;
char r,a0,c0,c1,c2;
setup_adc_ports(NO_ANALOGS);
setup_adc(ADC_OFF);
setup_psp(PSP_DISABLED);
setup_counters(RTCC_INTERNAL,RTCC_DIV_1);
setup_timer_1(T1_DISABLED);
setup_timer_2(T2_DISABLED,0,1);
setup_comparator(NC_NC_NC_NC);
setup_vref(FALSE);
setup_wdt(WDT_2304MS);
r=getc();
output_a(0);
output_b(0);
output_d(0);
output_e(0);
while(1) {
r=getc();
if(r==0xFE) {
restart_wdt();
a0=getc();
c2=getc();
c1=getc();
c0=getc();
if(a0==address) {
b=(c0&0b00000011)|((c0&0b00111100)>5);
output_e(e);
}
}
}
}
It's not even large enough to play large-building tetris on, but I still think it's really cool.
OT: I have an interview with an MIT Education Counselor (EC) for early action this Monday. Between this and the recent protein gel discovery, I should have a lot to talk about with him. Neat.
I really expected this to be cool since it was on the front page of slashdot and it's from MIT. I was sure I was missing something, but no, it's just a very low tech boring stupid dorky thing. I wouldn't even call it a hack really. I have a light in the front window of my house, does that mean I have a giant 1x1 pixel display?
There's a guy out there with thousands of dollars of Christmas lights hooked up to his computer and synced to music he broadcasts over FM as you drive by his house. If you tell me some dudes at MIT built a GIANT LED display, well, then that mutha better damn well be friggin' huge. Not 2 scrolling letters in a couple windows in the corner of a building. With the dough they are spending to go to MIT they should be pissed that's all the better they could do, some smarter than your average bear 5th graders could pull that off.
Normally I hate it when people complain about stories not being worthy of Slashdot, but this story and some blog dude buys a Mac and shares his experience with us? I'm just glad Slashdot is still worth what I'm paying for it, although at this rate it won't be very long until it isn't.
OK, it was done by pro's and cost a bit more than $150, about $17 million more! But at 12.5 million LED's I think the Fremont Street Viva Vision is Las Vegas wins the "biggest" contest. http://www.vegasexperience.com/viva.cfm To provide some scale on the photos and minivid clip, the peak of the ceiling is at least 6 stories above you and the small segment you see is just a fraction of the 1,500+ feet long display. Oh, and from the looks of those photoshop-ed pictures, I wouldn't be surprised if this was just yet another MIT "Prank"....
Your other points, though, about adequate power supply cabling and decoupling, are spot on.
Pining for the fjords
Can't imagine it'd be that hard or expensive to introduce some colour to the scheme.
Meta will eat itself