katchupoy
New member
Hi again katchupoy I have checked out the availability of the BuckPuck drivers down under and I find that Cutter Electronics deal with them. They do the range from 350 to 1000 mA so I think I'll get some of those and stop messing around with these from Mornsun.
The BuckPuck 3021 D-E "“ 1000 looks like it will fit the bill if my choice is incorrect can someone come up and give me directions for driving Cree XP "“ G R5 "¦"¦5 LEDs in each channel 4 channels of White and 1 channel of royal Blues so 5 drivers should work out just fine.
I feel if I can use equipment that others are using I have a better chance of getting things working.
Thank you for the WELCOME to the site. Malc
@Capt.Malc,
I was not suggesting that you buy the Buckpuk, since i have no experience with them too. But I what I was saying was, its very similar to what you already have... Maybe just play with the code....?
What will happen if you reverse the values of these???
int bluepercent[11] = { 0, 1, 2, 5, 8 ,12, 18, 27, 44, 80, 255 };
int whitepercent[11] = { 0, 1, 2, 5, 8 ,12, 18, 27, 44, 80, 255 };
btw those values above are for analog drivers... since you have the PWM then you need to use the values below...
//int bluepercent[11] = { 0, 26, 52, 78, 103, 128, 154, 180, 205, 230, 255 };
//int whitepercent[11] = { 0, 26, 52, 78, 103, 128, 154, 180, 205, 230, 255 };
But you need to reverse it? 255 first then going down...???
Try that first.
C