Electronics
Macbook running 10.7
ATmega32u4
LED's
The LED's do not contain any hint to the input side (from my research its the chip side) although I have tried both sides in frustration.
blue is labeled GND
green in labeled Cin
white is labeled Din
red is labeled VCC
the only other text on the led is V03 and 10.22 but I was told they are LPD6803 chips.
Wiring
I have attempted to use the ISP headers as well as the breadboard shown in the image.
The power supply is 5V 1A (fully lit the strand should pull over 2 amps though)
Software
Custom Arduino alpha 0021 http://www.ladyada.net/make/ledbelt/ (only IDE that won't throw up an out of sync error with ATmega32u4)
Strandtest.pde
https://github.com/adafruit/LPD6803-RGB-Pixels
modifications I made as follows:
- Code: Select all
int dataPin = 2; // 'yellow' wire
int clockPin = 1; // 'green' wire
// Don't forget to connect 'blue' to ground and 'red' to +5V
// Timer 1 is also used by the strip to send pixel clocks
// Set the first variable to the NUMBER of pixels. 20 = 20 pixels in a row
LPD6803 strip = LPD6803(50, dataPin, clockPin);
As soon as the upload completes (with no power supply connected) all the LEDs flash dim red very fast.
whether the external power supply is connected before or after the upload all the LED's are all solid random shades.(which is always the case when power is applied)
I have attempted to reverse and change the data and clock pins, but apparently on then ATmega32u4 Pin B1 and B2 are 1 & 2 on a standard Arduino
Possible Issues
Could the 1A power supply be causing this issue (even though this sketch shouldn't light them all up)?
some critical flaw I don't realize in my circut wiring?
Issue with the sketch?
Any help is much appreciated, thank you

