Hey guys, getting my first Arduino project running and have hit a snag. Can't get the LED strip light from radioshack (
http://www.radioshack.com/product/index.jsp?productId=16306856&clickId=489254786&affiliateId=59782&affiliateCustomId=#) working with my Arduino Micro.
Here's what I've done:
1) Downloaded the strip_1m.pde, modified the code for the ATMEGA like so:
#define DATA_1 (PORTF |= 0X01) // DATA 1 // for ATMEGA
#define DATA_0 (PORTF &= 0XFE) // DATA 0 // for ATMEGA
#define STRIP_PINOUT DDRF=0xFF // for ATMEGA
//#define DATA_1 (PORTC |= 0X01) // DATA 1 // for UNO
//#define DATA_0 (PORTC &= 0XFE) // DATA 0 // for UNO
//#define STRIP_PINOUT (DDRC=0xFF) // for UNO
2) Found an old 12V adapter (tested, puts out around 12.25V), ran hot to LED strip +12V (red), ground to Arduino ground and LED strip ground (black).
3) Ran LED strip DIN (green) to A0 on Arduino.
Seems pretty simple. When I upload the code to the arduino and plug in the 12V adapter, nothing... no lights at all.
What am I missing?
Thanks so much!