Christmas Projects Assortment

Hi all!
With christmas coming up, I'm sure some of us will be wanting to
celebrate and make some christmasy arduino projects. Whether it is
decorations that react to something you do, or wierd flashy lights, you
(should) be able to find inspiration here. To start off with, I made a
bicoloured LED flasher, that alternates colours between a string of
bi-coloured LEDs. Sadly, I've got no schematics, as I do not have a
program to make them in. (Any suggestions?) I was thinking of
mounting them on a card board triangle to make a flashing christmas tree

Hope to here from you!

You are just looking for an easy to use schematic capture tool? I can recommend expresspcb.com, that's what I use, easy to make your symbols for odd things like LED strings.

Are you are just looking for an easy to use schematic capture tool?

No, I'm not just looking for a schematics program, that was an afterthought. Still, the link looks good!
I would post some pictures, but I dismantled the circuit so I could re-build it better.

Velleman also has a bunch of holiday LED kits (among many other things).
Build up with the kids, use as inspiration for an arduino design, or treat as a inexpensive collection of parts and hack into something different :slight_smile:

Christmas tree.
http://www.vellemanusa.com/us/enu/product/view/?id=350675
Deluxe Christmas tree - lot more LEDs
http://www.vellemanusa.com/us/enu/product/view/?id=350692
3D Christmas tree
http://www.vellemanusa.com/us/enu/product/view/?id=351133
Surface Mount Christmas tree
http://www.vellemanusa.com/us/enu/product/view/?id=351404

Santa in a sleigh
http://www.vellemanusa.com/us/enu/product/view/?id=350691

A bell
http://www.vellemanusa.com/us/enu/product/view/?id=350695

5 high x 7 wide scrolling message board
http://www.vellemanusa.com/us/enu/product/view/?id=351092

several different stars
http://www.vellemanusa.com/us/enu/product/view/?id=522248
http://www.vellemanusa.com/us/enu/product/view/?id=522251
http://www.vellemanusa.com/us/enu/product/view/?id=522428
http://www.vellemanusa.com/us/enu/product/view/?id=523250

and 2 different candles
http://www.vellemanusa.com/us/enu/product/view/?id=522281
http://www.vellemanusa.com/us/enu/product/view/?id=525536

Build up with the kids

A bit hard when you are a kid!

I made the 3d christmas tree a while ago, but did not realise they had such fantastic choise besides that! The SMD tree catches my eye, among others...

"A bit hard when you are a kid!"
Hard to tell that from your much more mature sounding initial post :slight_smile:

It can be a hassle rounding up all the parts to make something like this from scratch. These kits make it easy to have a little fun and to have something completed that can be put aside. Many home projects get bogged down when the design has been debugged, the protoboard is full of parts, and now its time to put it all into an enclosure and getting batteries installed, etc.
I came across these recently at Staples

"really useful boxes" and have mounted some stuff. Easy to work with plastic, variety of sizes (and color, depending on the size), not very much money, and can be picked up locally if you have a Staples or maybe nearby. Lot easier to envision your design going into something when you can hold the box in your hand.

They sound good! I like the looks of all the projects and would be intrigued as to what they do.

The big one is the fencing (touche!) scoring machine I am making.
2 digits of score lights for each side (team event can go to 45)
small display counts 1 to 9 (3 minute periods)
middle 4 digits are time remaining (max is 10:00 break between an individuals events, so 4th digit is overkill really).
Bottom left/bottom right:
4 pairs of lights indicate: warning card, penalty card, grounded, and priority.
Group of 3 is off target light or broken wire
Group of 2 is touch scored.

Smaller box in front is 16 button remote control for setting time, score, card light, start/stop, coin toss (for priority), period.

Even smaller box is remote display of the touch, offtarget, ground lights. Right now have the cards mounted with a Promini in a stretch pencil case from Staples, kind of flimsy, but works for now. Gonna try 2 of these mounted at the ends of a small board, Promini will go in the bottom of one to receive serial commands from big to turn lights on/off.

Wow... You really thoght that through. More than I would!

Well, it helps being an electrical engineer :slight_smile:

And its really just my version of commercially available scoring machines, with the operation programmed to do things that I would like as a referee vs what they do now.

I'm still working on getting the touch lights working. I started with just reading the serial output of another scoring machine to turn on the remote lights, then added to it to show the score & time, then while waiting for that machine to be updated to accept time start/stop commands (so I didn't need 2 remotes), I created my own time running code, and am now adding the touch functionality to make it a totally independent machine.
Somewhere in there I came up with the remote also. Started just getting wireless to talk between 2 arduinos with the example virtual wire, then added the keypad library code to be able to send specific characters, then added sleep mode and wake on interrupt, then changed to lower voltage promini with Li battery, then added battery charging circuit.

So, small steps, get it working, add to it :-).

I have code in place to sound a buzzer, waiting on a little speaker to arrive to add that in.
Am working on touch circuits now. Have something working pretty well for epee (fairly simple, button closure on the end of the weapon, is either closed against non-ground (good score light), or against something grounded (so no score light). Trying to get more comlicated sabre & foil working, where you have to score on opponents lame (outer metalllic jacket over the fencing uniform), but have situation where if your weapon touches your own lame lights have to off, but can score & be scored on while that is happening, and there are strange time restrictions that the code has to account for.

Hello all!
I've just chucked together a little christmas toy / decoration.
A picture can be seen here:

or here:

Sorry, I forgot to say. A video can be found here:

the picture and video are not brilliant as they were from an old camera.
The LEDs actually go very bright, and it looks good really.

Sorry again. I forgot to say how it works. (oops!)
[smiley=huh.gif] [smiley=huh.gif] [smiley=huh.gif]

A random number is generated between 15 and 500.
Pin 2 is set high.
(Pin 2 turns on a transistor, turning on the LEDs.)
The random number is used as a delay time.
Pin 2 is set low.
A new random number is made.
The random number is used as a delay time.
The cycle starts again.

The code is here:

int delayVal;
const int ledpin = 2;

void setup(){
pinMode(ledpin, OUTPUT);
}

void loop(){
randomSeed(analogRead(A0));
delayVal = random(15, 500);
digitalWrite(ledpin, HIGH);
delay(delayVal);
delayVal = random(15, 500);
digitalWrite(ledpin, LOW);
delay(delayVal);
}