Sunday, February 15, 2009

Amy's New Light Arduino Source Code

The code for Amy's bikelight can be downloaded here.

2 comments:

mikah said...

Hi there, i was just reading the source code for "byte DOWN", and is states as below:

byte DOWN[] = {
B00010000,
B00110000,
B01111111,
B11111111,
B11111111,
B01111111,
B00110000,
B00010000
};

I think that's suppose to be "byte LEFT" instead, right?

I reckon "byte DOWN" should be something like:

byte DOWN[] = {
B00111100,
B00111100,
B00111100,
B00111100,
B11111111,
B01111110,
B00111100,
B00011000
};

hope this helps :)
Anyway, this is really a great project you have come up with, great for beginners. Thanks alot Justin

Justin said...

Thanks Abdul, I didn't see you comment until now. I'll see if the latest version has this bug in it.

Thanks for commenting. Send a picture if you get something working.

You may be interested in the ASCII driver I put together for the Spark Fun LED matrix at
http://wyoinnovation.blogspot.com/2009/07/improved-break-light.html.

Justin