Shift Powered Pumpkins

4021144025_362a11d544_b

[Garret] and a couple of friends totally stole our idea wanted to light up their pumpkins a bit differently this year. They used some ShiftBrites and all the corresponding shift hardware (who knew there was so much shift out there) to bring their carved orange minions to life. Yes, this could be done a lot less modulated by using a regular LED and perhaps a PIC. Maybe it’s not the most technically challenging, but hey its in the spirit of Halloween – one of our favorite holidays. Speaking of which, doesn’t that fence look familiar? Check out a video after the break. Seriously, Mutton Chops?[youtube http://www.youtube.com/watch?v=qJIjwZnU-dw&feature=player_embedded%5D

15 thoughts on “Shift Powered Pumpkins

  1. i’m definitely enjoying the midi ghostbusters theme. lol. this is a pretty cool idea, would be better if it was synced with the song on loudspeakers, like those christmas light arrays that blow people’s minds.

  2. Haha Jakob, I see what you did there with the black on black text at the end of your summary. As I said in the article, the mutton chops were a joke for my friends. I shaved off part of my beard and then cued up the Shaft music on my phone and walked into the kitchen. I assure you that right now, my face is devoid of all hair.

  3. @george: The candle flicker effect is pretty simple. Move up and down in brightness by a random amount, but not too far. The following function writes an individual flicker effect to all the ShiftBrites in a chain. You just run the function as many times as you want; loop it forever to get neverending candle.

    void runCandleFlicker() {

    int flicker;

    for (int j1 = 0; j1 1023) flicker = 1023;
    if (flicker < 100) flicker = 100;

    LEDChannels[j1][0] = flicker;
    LEDChannels[j1][1] = flicker*2/3;
    LEDChannels[j1][2] = 0;
    }

    WriteLEDArray();
    delay(random(20,70));

    }

Leave a Reply to napalmCancel reply

Please be kind and respectful to help make the comments section excellent. (Comment Policy)

This site uses Akismet to reduce spam. Learn how your comment data is processed.