<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>SparkFun Electronics Comments</title>
<link href="https://www.sparkfun.com/"></link>
<id>urn:uuid:214d0e4e-f1b1-d287-ce26-ac5b4c9f8249</id>
<updated>2017-07-14T19:52:07-06:00</updated>
<author><name>SparkFun Electronics</name>
</author>
<link href="https://www.sparkfun.com/feeds/comments" rel="self" type="application/atom+xml"></link>
<entry>
<title>Customer #802743 on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>Customer #802743</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-572526d9ce395fcf3a8b4568"></link>
<id>urn:uuid:65300852-8a31-7b76-f530-a08dfb49991d</id>
<updated>2016-04-30T15:42:49-06:00</updated>
<content type="html">&lt;p&gt;I&amp;rsquo;m putting these on a custom board but noticed that in the sparkfun eagle library the footprint doesn&amp;rsquo;t match the schematic part. According to the WS2812 datasheet I need to have access to VCC to put a 0.1uF cap and a 150R off of it but the schematic part only gives me 4 pins more like the WS2812B is configured but the board footprint is still 6 pin. Letting you know to get a fix in!&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #65077 on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>Customer #65077</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-559a37d5757b7f39778b4567"></link>
<id>urn:uuid:64764309-989b-c308-2231-87f23232b005</id>
<updated>2015-07-06T02:09:57-06:00</updated>
<content type="html">&lt;p&gt;There is a useful trick I found for controlling the LEDs!
Outputting the exact bit waveform is hard (100ns accuracy - duh?) but I found that if I run a Microchip PIC (or equivalent) MCU on 64MHz internal oscillator I can cause the &lt;em&gt;UART&lt;/em&gt; to output the bit waveform.
The trick is in the UART setup:
* INVERT the output of the UART (normally low)
* bit rate of 8MHz or 125ns
* No stop bit (8 data bits, no parity)
Then there are the MAGIC NUMBERS: Sending byte 192 (0xC0) sends a 1 code. Sending byte 252 (0xFC) sends a 0 code. Those BYTE values create a BIT waveform for the LEDs.
This trick could be useful for the high-end machines (ARM based for example) to support the accurate bit timing requirements.&lt;/p&gt;

&lt;p&gt;Here is a sample C code (CCS C) :
    #include &amp;lt;18LF46K22.h&gt;&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;#fuses INTRC_IO,NOPROTECT,NOPLLEN,NOBROWNOUT,NOLVP,NOWDT                      

#use delay(clock=64000000)
#use rs232(stream=LED_STREAM, baud=8000000, xmit=PIN_C6, rcv=PIN_C7,bits=8,parity=N,stop=0,ERRORS,INVERT)

#define NUM_LEDS 24

#define HI_BIT  192 // 0b11000000
#define LOW_BIT 252 // 0b11111100


//==========global  variables:===========

byte grn [NUM_LEDS];
byte blu [NUM_LEDS];
byte red [NUM_LEDS];

///////////////////////////////////////////////
#INLINE
void SendByte (byte b) {
    byte i;

    // send 8 bits, MSB first.
    // for each bit send a CHAR that creates the bit's waveform
    for(i=0;i&amp;lt;8;i++) {
        if(bit_test(b,7)) fputc(HI_BIT,LED_STREAM);
        else fputc(LOW_BIT,LED_STREAM);
        b&amp;lt;&amp;lt;=1;
    }
}
////////////////////////////////////

void Draw (){
    unsigned int8 i;

    // send all data to LEDs
    // data order to transmit is G,R,B, 8 bits each.

    for (i=0;i&amp;lt;NUM_LEDS;i++){
        SendByte(grn[i]);
        SendByte(red[i]);
        SendByte(blu[i]);
    }
}

/////////////////////////////////////
void initArray() {
    byte i;

    // assuming 24 LEDs:
    for(i=0;i&amp;lt;NUM_LEDS;i++) {
        // red channel:
        if(i&amp;lt;6) red[i]=i*51;
        else if(i&amp;lt;12) red[i]=(11-i)*51;
        else red[i]=0;
        // grn channel:
        if(i&amp;lt;8) grn[i]=0;
        else if(i&amp;lt;14) grn[i]=(i-8)*51;
        else if(i&amp;lt;20) grn[i]=(19-i)*51;
        else grn[i]=0;
        // blu channel:
        if(i&amp;lt;4) blu[i]=(3-i)*51;
        else if(i&amp;lt;16) blu[i]=0;
        else if(i&amp;lt;22) blu[i]=(i-16)*51;
        else blu[i]=(27-i)*51;
    }
}
///////////////////////////////////////
void Rotate() {
    byte r,g,b,i;

    // rotate colors in array. This is only for demo.
    r=red[0];
    g=grn[0];
    b=blu[0];
    for(i=1;i&amp;lt;NUM_LEDS;i++) {
        red[i-1]=red[i];
        grn[i-1]=grn[i];
        blu[i-1]=blu[i];
    }
    red[NUM_LEDS-1]=r;
    grn[NUM_LEDS-1]=g;
    blu[NUM_LEDS-1]=b;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////


void main(){

    setup_oscillator(OSC_64MHZ);
    initArray();
    delay_ms(100);

    while(true){
      Draw();
      delay_ms(60);
      Rotate();
   }
}
&lt;/code&gt;&lt;/pre&gt;</content>
</entry>
<entry>
<title>LEDs4eva on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>LEDs4eva</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-546e5a7cce395f6a588b4568"></link>
<id>urn:uuid:a3b18c70-e4af-ea8d-f24f-268379bbe360</id>
<updated>2014-11-20T14:17:48-07:00</updated>
<content type="html">&lt;p&gt;How can I find out how big the emitters are? I don’t think it’s specified on the data sheet. Do red, green, and blue all come from the same place? Thanks!&lt;/p&gt;</content>
</entry>
<entry>
<title>RichardBronosky on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>RichardBronosky</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-54334707757b7f9e728b4569"></link>
<id>urn:uuid:304e37c9-07bc-75ef-60c1-4e077cefb1bc</id>
<updated>2014-10-06T19:51:03-06:00</updated>
<content type="html">&lt;p&gt;I was able to power and drive a 5mm Diffused Addressable RGB LED https://www.sparkfun.com/products/12986 using a SparkFun 3.3v Arduino Pro Micro. However, I found that pins 5, 7, and the analog pins DO NOT WORK to drive this (at least with the Adafruit library). See more at http://forums.adafruit.com/viewtopic.php?f=47&amp;amp;t=61188&lt;/p&gt;</content>
</entry>
<entry>
<title>Beelzebot on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>Beelzebot</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-53537ec8757b7f1b2b8b4567"></link>
<id>urn:uuid:7b6ad4f8-2a11-ec47-487c-c3a37b6f2726</id>
<updated>2014-04-20T02:01:12-06:00</updated>
<content type="html">&lt;p&gt;I wish the communications protocol on these was&amp;hellip;&amp;hellip;.not so weird LoL but it&amp;rsquo;s interesting :)&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #223941 on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>Customer #223941</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-533acbbdce395feb588b4567"></link>
<id>urn:uuid:a8c5b395-b92c-501c-91c7-138ac4f7bff1</id>
<updated>2014-04-01T08:22:53-06:00</updated>
<content type="html">&lt;p&gt;Hi guys! Just a question for those who have played with these parts: if I want to build up a stripe with no animating effects or color changes, but a simple static color configuration, it&amp;rsquo;s a matter of simply sending the RGB information for all the leds in the chain once and then keeping the data bus at high level (so they won&amp;rsquo;t interpret a long low level as a RESET command)? Or they keep lit with the last RGB color received even with the reception of a RESET? (it would make sense the RESET only affected the queuing and re-sending of the RGB values through the I/O data line -not the leds' output- but this is an assumption I&amp;rsquo;d like to confirm beforehand).
Could someone answer this?
Thanks a lot!&lt;/p&gt;</content>
</entry>
<entry>
<title>sparkieee on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>sparkieee</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-52ec230b757b7fe9468b4567"></link>
<id>urn:uuid:450d16c2-c2ae-141a-9701-02471eb149d9</id>
<updated>2014-01-31T15:26:19-07:00</updated>
<content type="html">&lt;p&gt;i got 1.62mm including the pads. (thats with a mitutoyo)&lt;/p&gt;</content>
</entry>
<entry>
<title>MatrixWriter on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>MatrixWriter</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-52ec06ccce395faf348b4567"></link>
<id>urn:uuid:7d24bbb6-7318-852d-f89d-ed30f082195a</id>
<updated>2014-01-31T13:25:48-07:00</updated>
<content type="html">&lt;p&gt;@sparkieee&lt;/p&gt;

&lt;p&gt;Acrobotic Industries is the only one selling the WS2812Bs (and the WS2812) and they are lower in price compared to Sparkfun or Adafruit.&lt;/p&gt;</content>
</entry>
<entry>
<title>MattOldred on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>MattOldred</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-52ea5836757b7f66588b4567"></link>
<id>urn:uuid:b27ae218-5790-fb7a-f6ea-2daa914cde9f</id>
<updated>2014-01-30T06:48:38-07:00</updated>
<content type="html">&lt;p&gt;For anyone who cares: I bought one and they are 1.5mm in height excluding the legs, and about 1.65mm when soldered to a PCB.&lt;/p&gt;</content>
</entry>
<entry>
<title>Kamiquasi on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>Kamiquasi</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-52e8e265757b7fcc1d8b4567"></link>
<id>urn:uuid:94e45d12-7743-9860-0945-d3304a707089</id>
<updated>2014-01-29T04:13:41-07:00</updated>
<content type="html">&lt;p&gt;Even simpler to solder (could even drop them into a breadboard) would be the 8mm PTH LED variants.  Currently for sale in the U.S. under the name &amp;lsquo;PixelBits&amp;rsquo;.&lt;/p&gt;</content>
</entry>
<entry>
<title>sparkieee on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>sparkieee</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-52e88b8f757b7fb6038b4567"></link>
<id>urn:uuid:fef72773-2ec8-d423-d065-0f3a284a9c2c</id>
<updated>2014-01-28T22:03:11-07:00</updated>
<content type="html">&lt;p&gt;sparkfun really needs to get some ws2812b LEDs. same exact as these except it only has 4 pads (so much easier to hand solder) which are v+, v-, Din, Dout. just got some from another supplier and made a simple LED strip with some ribbon cable.&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #156731 on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>Customer #156731</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-52d478f4757b7fa75e8b4569"></link>
<id>urn:uuid:c544c7a0-e4ba-4c5d-2214-5e98003a4e66</id>
<updated>2014-01-13T16:38:28-07:00</updated>
<content type="html">&lt;p&gt;Looks like Adafruit increased their minimum shipping rates to US$ 33,00 to where I am, whereas SF is now shipping for free (for orders over $60.00)&amp;hellip;&amp;hellip;&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #414590 on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>Customer #414590</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-52d1b249757b7f3a558b4567"></link>
<id>urn:uuid:072fb16a-518d-e21c-5ffd-95d40c8cd9e4</id>
<updated>2014-01-11T14:06:17-07:00</updated>
<content type="html">&lt;p&gt;For what it is worth, most of the other datasheets I&amp;rsquo;ve found for this product give dramatically lower estimates of peak light output. None of them have any versioning or dates.  The one I &lt;a href=&quot;http://www.world-semi.com/uploads/soft/130904/1_1500205981.pdf&quot; rel=&quot;nofollow&quot; &gt;found on WorldSemi&amp;rsquo;s site&lt;/a&gt; agrees with sparkfun&amp;rsquo;s though.&lt;/p&gt;</content>
</entry>
<entry>
<title>MattOldred on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>MattOldred</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-52ab6138757b7fac428b4567"></link>
<id>urn:uuid:eef57107-db7a-ccb8-3121-dd69aad53c91</id>
<updated>2013-12-13T12:34:16-07:00</updated>
<content type="html">&lt;p&gt;Can anyone tell me the height of these? It doesn&amp;rsquo;t seem to be specified on the data sheet. Thanks.&lt;/p&gt;</content>
</entry>
<entry>
<title>Kamiquasi on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>Kamiquasi</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-52972e9ace395fc1088b4567"></link>
<id>urn:uuid:cf54347d-51f5-fbd0-a3fe-52be595fb597</id>
<updated>2013-11-28T04:52:58-07:00</updated>
<content type="html">&lt;p&gt;Not part of the SFE product development team, but I can tell you that double-sided population is many times cheaper than a riser board in general production :)  SFE does carry a few double-sided population boards - e.g. the breakout board for the WS2812&amp;rsquo;s predecessor, the &lt;a href=&quot;https://www.sparkfun.com/products/10504&quot; rel=&quot;nofollow&quot; &gt;WS2801&lt;/a&gt; - though they try to avoid it.  Which is good not just for production reasons, but because a flush back on a board means it&amp;rsquo;s easier for end-users to handle, mount, etc. as well.&lt;/p&gt;</content>
</entry>
<entry>
<title>Tommy_2Tall on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>Tommy_2Tall</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-529707f6ce395f9b728b4567"></link>
<id>urn:uuid:ce5170c9-4e18-0a45-f111-a5b52a4d6984</id>
<updated>2013-11-28T02:08:06-07:00</updated>
<content type="html">&lt;p&gt;I&amp;rsquo;ve been thinking about combining these into a dense matrix but that decoupling cap' gets in the way.&lt;/p&gt;

&lt;p&gt;One solution would be to place the decoupling cap' right in the center of the solderpads, either on the bottom of the PCB or with some strange riser/spacer (a custom cut piece of PCB?) between the LED and the PCB solder pads.&lt;/p&gt;

&lt;p&gt;Using (pieces of) throughhole pins or SMD zero-Ohm &amp;ldquo;resistors&amp;rdquo; as &amp;ldquo;solder pad raiser&amp;rdquo; sounds like a possible solution as well, just to add some space beneath the LED but surfacetension alignment of the LED and &amp;ldquo;raisers&amp;rdquo; may not be precise enough in those cases.&lt;/p&gt;

&lt;p&gt;Would the production costs skyrocket by the addition of components on both sides of a PCB or would it still be commercially viable?
What does the SparkFun product development team have to say about that idea? :)&lt;/p&gt;</content>
</entry>
<entry>
<title>Kamiquasi on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>Kamiquasi</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-52923dd1ce395f76698b456a"></link>
<id>urn:uuid:72fb9f55-7957-1fde-1335-b520c7227b8b</id>
<updated>2013-11-24T10:56:33-07:00</updated>
<content type="html">&lt;p&gt;Probably - but how well will they run?  It&amp;rsquo;s basically a decoupling capacitor with the same function they have on any other IC, and there&amp;rsquo;s good reasons for placing those even if the ICs would generally be okay without them.&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #373803 on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>Customer #373803</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-52922f8e757b7f5d1b8b456a"></link>
<id>urn:uuid:0e1063a8-4ead-357c-593b-6809b2192451</id>
<updated>2013-11-24T09:55:42-07:00</updated>
<content type="html">&lt;p&gt;will these run without the capacitor?&lt;/p&gt;</content>
</entry>
<entry>
<title>Kamiquasi on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>Kamiquasi</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-528f3297757b7fa9778b456d"></link>
<id>urn:uuid:ee73398b-5e68-7d30-b3b2-c1ed3656831c</id>
<updated>2013-11-22T03:31:51-07:00</updated>
<content type="html">&lt;p&gt;You can forego the resistor - I don&amp;rsquo;t think I&amp;rsquo;ve ever seen one used as in the datasheet and the popular WS2812 strips certainly don&amp;rsquo;t use them.&lt;/p&gt;</content>
</entry>
<entry>
<title>Nava on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>Nava</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-528f2b2bce395f23178b4568"></link>
<id>urn:uuid:58814293-7c1b-d7a9-ae95-4bc2a414e5a6</id>
<updated>2013-11-22T03:00:11-07:00</updated>
<content type="html">&lt;p&gt;Hi - in the data sheet there is a 150 k resistor along with the 104 cap..but on the breakout board it seems like its just the cap.  Can I safety disregard the resistor then?&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #440104 on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>Customer #440104</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-5283b126757b7f42398b4567"></link>
<id>urn:uuid:6a1d2172-8403-c090-cdb2-0b91370acc3c</id>
<updated>2013-11-13T10:04:38-07:00</updated>
<content type="html">&lt;p&gt;Does anyone know the maximum number of ws2812s that can be driven before you start having issues? I was thinking about using these as Christmas lights.
-Never mind&amp;hellip; I popped in from another page and didn&amp;rsquo;t see the comments for this page.&lt;/p&gt;</content>
</entry>
<entry>
<title>Toni_K on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>Toni_K</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-5209171fce395f76377e62da"></link>
<id>urn:uuid:01ada079-1a08-2927-98ed-a8211fe4fbcd</id>
<updated>2013-08-12T11:10:55-06:00</updated>
<content type="html">&lt;p&gt;Thanks for letting us know about that! I threw a bug into the system for considerations on future revisions.&lt;/p&gt;</content>
</entry>
<entry>
<title>tRoynica on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>tRoynica</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-52080285ce395f4735b3471b"></link>
<id>urn:uuid:af80b2ab-d4e0-a60a-36da-15515eb8606d</id>
<updated>2013-08-11T15:30:45-06:00</updated>
<content type="html">&lt;p&gt;Searching for the WS2812 I stumbled upon a new product from Worldsemi: the WS2812B.
It looks like the WS2812 but it has 4 pins instead of 6. The low-pass filter seems to be built-in now so it does not have seperate power pins for the LEDs and the logic. Also, it allows a much simpler PCB design because of the new pin layout.
Maybe there is demand for this component&amp;hellip; I certainly am curious.&lt;/p&gt;</content>
</entry>
<entry>
<title>Royly on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>Royly</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-5200efeece395fd7014080bc"></link>
<id>urn:uuid:aef62eea-6f26-f3dd-c9f4-c99c011c9114</id>
<updated>2013-08-06T06:45:34-06:00</updated>
<content type="html">&lt;p&gt;Proto-PIC (that&amp;rsquo;s us) stock them http://proto-pic.co.uk/ws2812-5050-rgb-led-with-integrated-driver-chip-10-pack/&lt;/p&gt;</content>
</entry>
<entry>
<title>Beelzebot on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>Beelzebot</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-51fcb177757b7f3e24247a7a"></link>
<id>urn:uuid:18a4fd59-a59c-3901-bc61-89438f0a66c5</id>
<updated>2013-08-03T01:29:59-06:00</updated>
<content type="html">&lt;p&gt;Great!!! I&amp;rsquo;ll be buying 500 plus of these in the not to distant future! :D&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #329465 on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>Customer #329465</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-51f84413757b7fc81cb04cc9"></link>
<id>urn:uuid:dbc3ea07-3475-0ed5-956f-45a16219ab46</id>
<updated>2013-07-30T16:54:11-06:00</updated>
<content type="html">&lt;p&gt;does anyone know of a uk supplier&lt;/p&gt;</content>
</entry>
<entry>
<title>Stefanibus on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>Stefanibus</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-51f82b48757b7fc91cd92ad8"></link>
<id>urn:uuid:f5790950-35df-9f13-3524-9a96386d5ee6</id>
<updated>2013-07-30T15:08:24-06:00</updated>
<content type="html">&lt;p&gt;This will depend on your desired output frequency.  From the datasheet&amp;rsquo;s specs on communications (pgs 4-5), the worst case command time is 1.4uS per bit, 24 bits per LED plus 50us reset per command.  This gives the equation: (#LEDS)&lt;em&gt;(1.4uS)&lt;/em&gt;(24) + 50uS &amp;lt; (number of uS in output period).
In my case, I want something that can operate ~50Hz so it looks smooth to the eye.  I get:  #LEDs &amp;lt; (20000uS - 50uS)/((1.4uS*24) = 593 LEDs.
Note that your controller needs to be able to control it&amp;rsquo;s output within +/- 150nS.  Seems like a 32MHz mcu could do this if you put everything in a timer/interrupt routine and didn&amp;rsquo;t try to do anything else.  Could someone verify this?&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #329465 on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>Customer #329465</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-51f6e411757b7f1e5586d3b9"></link>
<id>urn:uuid:b0268f54-5ac1-df54-976b-0e0ee2925a54</id>
<updated>2013-07-29T15:52:17-06:00</updated>
<content type="html">&lt;p&gt;These look great, I can&amp;rsquo;t wait to get my hands on some for a lighting project but I have some questions.
1  What tempture should I solder it at in a toster oven ?
2  Is there a limit to how many I can link in one chain ?
3  In longer chains, the current draw will be greater, how can I supply this demand ?
Thanks in advance.&lt;/p&gt;</content>
</entry>
<entry>
<title>crashfrog on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>crashfrog</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-51f3ebd9ce395f0b25000004"></link>
<id>urn:uuid:c7c456e5-dcc5-2c73-2dc6-78f372b9ef8e</id>
<updated>2013-07-27T09:48:41-06:00</updated>
<content type="html">&lt;p&gt;How many of these can you daisy-chain on the same bus, assuming you can supply sufficient power?&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #298170 on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>Customer #298170</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-51f389a5ce395f7e25000000"></link>
<id>urn:uuid:9956f5e1-c7d6-c6b1-2cce-7e520044cab8</id>
<updated>2013-07-27T02:49:41-06:00</updated>
<content type="html">&lt;p&gt;That&amp;rsquo;s awesome! Keep us updated. It would be extremly helpful for my planned led curtain.&lt;/p&gt;</content>
</entry>
<entry>
<title>l0gikG8 on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>l0gikG8</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-51f345b8ce395f7232000000"></link>
<id>urn:uuid:5feb1862-73e0-ac00-7f7f-f524ca9651f5</id>
<updated>2013-07-26T21:59:52-06:00</updated>
<content type="html">&lt;p&gt;Looks like Adafruit lowered their price after GregFR&amp;rsquo;s comment.  Gotta love free markets and both of these companies.&lt;/p&gt;</content>
</entry>
<entry>
<title>rsp on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>rsp</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-51f341cace395f5a2e000004"></link>
<id>urn:uuid:61a2534c-590d-dbc8-79ab-937b33677110</id>
<updated>2013-07-26T21:43:06-06:00</updated>
<content type="html">&lt;p&gt;SF lowered the price after my comment.  Whether it &amp;rsquo;s a product listing error or responding to a call for competitive pricing, I&amp;rsquo;m happy whenever SF offers the best products at the lowest prices.&lt;/p&gt;</content>
</entry>
<entry>
<title>Toni_K on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>Toni_K</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-51f2f781ce395f6a32000004"></link>
<id>urn:uuid:2ed227fe-270d-f721-7a60-e785fae3ccc4</id>
<updated>2013-07-26T16:26:09-06:00</updated>
<content type="html">&lt;p&gt;That is actually an idea we are throwing around with them!&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #298170 on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>Customer #298170</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-51f2efb7ce395ff533000000"></link>
<id>urn:uuid:fe7e6bae-8e99-a2b3-c7ee-83b153161058</id>
<updated>2013-07-26T15:52:55-06:00</updated>
<content type="html">&lt;p&gt;Hey, an idea for these; How about talking to your nice friends that make the flexible PCB&amp;rsquo;s, and ask them to make strips of flexible PCB, preferably single sided, which enables you to just solder on these leds to make long led strips, for a led curtain or something! This saves a lot of time etching several regular PCB&amp;rsquo;s and cutting and stuff. The flexible PCB could then be sold in length units, and cut to the customers needs.&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #42327 on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>Customer #42327</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-51f2d504ce395ff730000003"></link>
<id>urn:uuid:600fe923-ce41-0b6f-f16f-99d0f8d9a6f1</id>
<updated>2013-07-26T13:59:00-06:00</updated>
<content type="html">&lt;p&gt;I really love these little things.&lt;/p&gt;

&lt;p&gt;I&amp;rsquo;m really happy to finally see these as raw units. I bought some about 6 months back, but the smallest quantity I could get was a full roll of 1000 direct from a supplier in China (Alibaba is awesome for stuff like this). It&amp;rsquo;s great to finally see these being sold in smaller quantities.&lt;/p&gt;

&lt;p&gt;I know the breakout is a little larger than Adafruit&amp;rsquo;s, but the schematic is current - Adafruit&amp;rsquo;s public &amp;ldquo;neoPixel&amp;rdquo; schematics are still based on the older WS2811 chip and separate LED. It&amp;rsquo;s simple to just replicate the Sparkfun schematic into your own designs. SparkFun is just flipping awesome for sharing their design out. Also FWIW - Adafruit&amp;rsquo;s current NeoPixel library will work perfectly.&lt;/p&gt;

&lt;p&gt;If you haven&amp;rsquo;t played with these things, I encourage it. I can&amp;rsquo;t say enough good things about how easy these are to use.&lt;/p&gt;</content>
</entry>
<entry>
<title>GregFR on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>GregFR</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-51f29506ce395fd03e000001"></link>
<id>urn:uuid:2082e9bd-3b85-af7b-4499-426c483127c2</id>
<updated>2013-07-26T09:25:58-06:00</updated>
<content type="html">&lt;p&gt;Actually, Adafruit sells a 10 pack for 4.95.  These at 10 are .45 each, making them cheaper at SparkFun :)  Although I do think I like the NeoPixel boards better than the breakouts SF made.  Not everything needs to go into a breadboard ;)&lt;/p&gt;</content>
</entry>
<entry>
<title>xtopher on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>xtopher</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-51f2921fce395f5157000001"></link>
<id>urn:uuid:625e8915-32e8-e27e-9e93-4dae723a27dc</id>
<updated>2013-07-26T09:13:35-06:00</updated>
<content type="html">&lt;p&gt;Good eye, all fixed. Thanks!&lt;/p&gt;</content>
</entry>
<entry>
<title>rsp on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>rsp</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-51f1eb84ce395fb620000005"></link>
<id>urn:uuid:749b0110-954b-a81c-353b-2b5198bdbe09</id>
<updated>2013-07-25T21:22:44-06:00</updated>
<content type="html">&lt;p&gt;Adafruit has had &lt;a href=&quot;http://www.adafruit.com/products/1379&quot; rel=&quot;nofollow&quot; &gt;these&lt;/a&gt; for a while, and they cost less.  They have nicer (and cheaper) breakout boards for these too.&lt;/p&gt;</content>
</entry>
<entry>
<title>MrMark on COM-11821 - LED - SMD RGB (WS2812)</title>
<author><name>MrMark</name>
</author>
<link href="https://www.sparkfun.com/products/11821#comment-51f1ae66ce395fb620000004"></link>
<id>urn:uuid:78e2d761-092b-15b6-cc6f-6abbc45c12ae</id>
<updated>2013-07-25T17:01:58-06:00</updated>
<content type="html">&lt;p&gt;Very nice product. Saw them being built into boards and led strops and couldn&amp;rsquo;t wait to get my hands on a couple. Although it might be a little hard to use them if the datasheet link leads to a &amp;ldquo;404 not found&amp;rdquo; page. Also, I think when you said &amp;ldquo;&amp;hellip;a WS2811 control IC build right into the&amp;hellip;&amp;rdquo; you may have meant &amp;ldquo;&amp;hellip;a WS2811 control IC built right into the&amp;hellip;&amp;rdquo;.  You may want to fix these errors. Otherwise I look forward  to buying some and trying them out!&lt;/p&gt;</content>
</entry>
</feed>