LED RGB 64-control individually

Ohhh, yea. Try to buy it from one of their distributors. I believe jameco sells them. If not, try Mouser.

funkyguy4000:
Ohhh, yea. Try to buy it from one of their distributors. I believe jameco sells them. If not, try Mouser.

no. =(

Digikey?

funkyguy4000:
Digikey?

XD
out of stock.
Price: USD 3.58900
3.58900 = 3.6 dollars?? :astonished:
=(

3.58900 = 3.6 dollars??

Yes. If you are buying 100,000 of them that $0.011 adds up.

However did you not read what I said about the AS1130. You can not use it to drive those four lead RGB LEDs.

They will have to be 5050 SMD rgb leds if you want to use the AS1130 for it. Otherwise look for something else.

sorry, was talking about
AS1130 132 channel LED driver on this page.
https://shop.austriamicrosystems.com/eng/Products/Lighting-Management/LED-Driver-ICs/AS1130

Did you notice that the minimum order from that page was 1000 and they don't consider that a large quantity because they say:-

Quantity pricing may vary substantially due to package types and international prices may differ due to local duties, taxes, fees, and exchange rates.

ok, I need a AS1130 and 64 RGB LED smd 5050. who has to sell.
I have only to pay for Paypal.i am from Argentina.

also need resistance?

Whoa Whoa Whoa.

You are going to use 5050 SMD RGB leds on a POV project?
You will have to get a custom board for that, and seeing has how you want it to span your wheel, that'll be one pricey board.

Just get this. Way easier, way faster.

You'll also need this for that

amounts to $59.50.

who has to sell.????

I need a AS1130 and 64 RGB LED smd 5050.
I have only to pay for Paypal.i am from Argentina.

You can get the part for free as long as you dont need a lot: (Free samples)
http://www.ams.com/eng/Products/Lighting-Management/LED-Driver-ICs/AS1130/(oi)/1
Also you can buy less than 1000 pieces there.

But Digikey has the parts:

BTW: You can use the AS1130 with 4pin RGB LEDs too, but as I understand you cannot use the full 132 channels then.

You can use the AS1130 with 4pin RGB LEDs too,

So how would you wire that up then?

you'd have to only use one led from the RGB led, you might as well just by that single color if you wanted to use it with the AS1130

someone was registered in the https://shop.austriamicrosystems.com/eng/Products/Lighting-Management/LED-Driver-ICs/AS1130 page?. to my I get this message.

Phone: Invalide Phone/Fax number.

I could not get these cheats (AS1130), so I have decided on the WS2803. and these SMD LED.
http://www.ebay.com/itm/10x-Worldsemi-WS2803SO-18-Channel-RGB-Constant-Current-LED-Driver-SOP-WS2803-PWM-/160701799688?pt=LH_DefaultDomain_0&hash=item256a92dd08

[100 pcs New RGB PLCC-6 5050 3-CHIPS SMT SMD LED Light](http://100 pcs New RGB PLCC-6 5050 3-CHIPS SMT SMD LED Light)

I still need resistors? that value?

its led smd. http://www.ebay.com/itm/100-pcs-New-RGB-PLCC-6-5050-3-CHIPS-SMT-SMD-LED-Light-/170786097936?pt=LH_DefaultDomain_0&hash=item27c3a50b10

I still need resistors?

No, a constant current drive means you non't need them.

hi, my order arrived from Ebay. esperimentar's time. -_-.

I tell them that I decided on the 18-Channel RGB WS2803D. and rgb smd led 5050.
I connected the arduino exactly.I connected a single LED.

[url=http://www.subirimagenes.net/pictures/57e8f03b35f8885199700cec1d345609.png[/url]

I loaded this library.

and this example.

int dataPin  = 11;    // Yellow wire on Adafruit Pixels
int clockPin = 13;    // Green wire on Adafruit Pixels

// Don't forget to connect the ground wire to Arduino ground,
// and the +5V wire to a +5V supply

// Set the first variable to the NUMBER of pixels. 25 = 25 pixels in a row
Adafruit_WS2801 strip = Adafruit_WS2801(6, dataPin, clockPin);

// Optional: leave off pin numbers to use hardware SPI
// (pinout is then specific to each board and can't be changed)
//Adafruit_WS2801 strip = Adafruit_WS2801(25);

// For 36mm LED pixels: these pixels internally represent color in a
// different format.  Either of the above constructors can accept an
// optional extra parameter: WS2801_RGB is 'conventional' RGB order
// WS2801_GRB is the GRB order required by the 36mm pixels.  Other
// than this parameter, your code does not need to do anything different;
// the library will handle the format change.  Examples:
//Adafruit_WS2801 strip = Adafruit_WS2801(25, dataPin, clockPin, WS2801_GRB);
//Adafruit_WS2801 strip = Adafruit_WS2801(25, WS2801_GRB);

void setup() {
    
  strip.begin();

  // Update LED contents, to start they are all 'off'
  strip.show();
}


void loop() {
  // Some example procedures showing how to display to the pixels
  
  colorWipe(Color(255, 0, 0), 50);
  colorWipe(Color(0, 255, 0), 50);
  colorWipe(Color(0, 0, 255), 50);
  rainbow(20);
  rainbowCycle(20);
}

void rainbow(uint8_t wait) {
  int i, j;
   
  for (j=0; j < 256; j++) {     // 3 cycles of all 256 colors in the wheel
    for (i=0; i < strip.numPixels(); i++) {
      strip.setPixelColor(i, Wheel( (i + j) % 255));
    }  
    strip.show();   // write all the pixels out
    delay(wait);
  }
}

// Slightly different, this one makes the rainbow wheel equally distributed 
// along the chain
void rainbowCycle(uint8_t wait) {
  int i, j;
  
  for (j=0; j < 256 * 5; j++) {     // 5 cycles of all 25 colors in the wheel
    for (i=0; i < strip.numPixels(); i++) {
      // tricky math! we use each pixel as a fraction of the full 96-color wheel
      // (thats the i / strip.numPixels() part)
      // Then add in j which makes the colors go around per pixel
      // the % 96 is to make the wheel cycle around
      strip.setPixelColor(i, Wheel( ((i * 256 / strip.numPixels()) + j) % 256) );
    }  
    strip.show();   // write all the pixels out
    delay(wait);
  }
}

// fill the dots one after the other with said color
// good for testing purposes
void colorWipe(uint32_t c, uint8_t wait) {
  int i;
  
  for (i=0; i < strip.numPixels(); i++) {
      strip.setPixelColor(i, c);
      strip.show();
      delay(wait);
  }
}

/* Helper functions */

// Create a 24 bit color value from R,G,B
uint32_t Color(byte r, byte g, byte b)
{
  uint32_t c;
  c = r;
  c <<= 8;
  c |= g;
  c <<= 8;
  c |= b;
  return c;
}

//Input a value 0 to 255 to get a color value.
//The colours are a transition r - g -b - back to r
uint32_t Wheel(byte WheelPos)
{
  if (WheelPos < 85) {
   return Color(WheelPos * 3, 255 - WheelPos * 3, 0);
  } else if (WheelPos < 170) {
   WheelPos -= 85;
   return Color(255 - WheelPos * 3, 0, WheelPos * 3);
  } else {
   WheelPos -= 170; 
   return Color(0, WheelPos * 3, 255 - WheelPos * 3);
  }
}

... but the LED does not light.
any idea what's going on?

The chip will not work until you connect something to the REF input. See the data sheet for what resistor value you need.

hi , Hi, I connected a resistor to pin IREF 1.25kOkm and the other extremity of the resistance to Gnd.

LED is not lit. What happens?

I have connected a single LED.
Is it necessary to run the chit, connect
missing leds in chit outs, to work?