How to controll many LED's with arduino

Hi, For my new project i would like to controll 10 x 1W LED'S and make them fade or change color according to music like on this instructables: http://www.instructables.com/id/Arduino-PWM-music-LED-Light/?ALLSTEPS

My problem is: The poorman's buck driver is not sold ready to use and i can't make PCB.
My question is: What can i use for my project ? i found this

http://www.ebay.fr/itm/I2C-Adafruit-16-Channel-Servo-Driver-Board-with-12-Bit-PWM-for-Raspberry-Pi-etc-/161107058694?pt=UK_Computing_Other_Computing_Networking&hash=item2582baa006
would this will work ? also is there something less expensive ?

thank you for helping me

There is this (https://www.sparkfun.com/products/10615) that costs less.
Cheaper option: TLC5940 and Arduino
You may try also shift registers.

Thank you, shift registers look like a good option for controlling, but i don't think that the arduino is gonna like powering up 10 1w LED'S

You mention you won't be able to source that much power from Arduino. Are they are 5V LEDs? If they're 5V the TLC5940 won't directly drive that much current either. They only sink 120mA per PWM channel and a 1W 5V LED would need 200mA max. In that instance you'll probably need to consider using the outputs of the IC to drive logic level MOSFETs which will deal with the current involved. Same will go for shift registers if you went down that path - even a beefy TPIC6B595N shift register will only sink 120mA per channel. Standard 75HC595 will only output 35mA per channel.

All the best with your new project, Geoff

that's what i thought, so if i use mosfet, the arduino will be capable of powering the LED'S ?
I have never used this kind of component and im not sure if i understood well
edit: Ok the mosfet give pwm impulsion but doesn't drain current from the board, i need an external power supply
Am i wrong ?

You need external supply. Arduino 5V header pin is only good for 800mA.
TPIC6B595 can sink 150mA continuous per pin (not 120).
aaTPIC6A596 can sink 350mA continuous per pin.
74HC595 can sink 35mA Absolute Max, but then only 2 pins may be used as VCC & Gnd pins have 70mA Absolute Max limit. It's just not a good part for LEDs.

For this kind of current, you're really better off with Logic Level, Low Rds, N-channel MOSFETs to sink current to Gnd.

With 0.008ohm Rds (on-state resistance), this part will dissipate just 0.2A * 0.2A * .008 ohm = 0.3mW, nice & cool.