Adafruit
Ultra Skinny NeoPixel 1515 LED Strip 4mm wide - 0.5 meter long - 75 LEDs
We have all sorts of LED strips for a wide range of needs. Chonky strips? We got those! Strips with alligator clips that are easy-peasy to MakeCode? Oh defin...
Get notified when back in stock
We have all sorts of LED strips for a wide range of needs. Chonky strips? We got those! Strips with alligator clips that are easy-peasy to MakeCode? Oh definitely. Weatherproof? We have a gamut of options.
Now we have some Honey I Shrunk the LED Strips in the store. At an astonishing 4mm width these are wee yet surprisingly flexible and can fit just about anywhere. The wires are even nicely color-coded: black for ground, green for data signal, and red for 3-5VDC power.
Warning! These ultra skinny strips are not protected and are quite delicate. They should not be flexed repeatedly, and need to be handled with a lot of care. Not good for younger folks or beginners - check out our protected NeoPixel strips instead!
There are some things to watch for:
- These LED's use up to 10 Watts max (~2 Amps @ 5V) per meter. The max rating of 4.5A is assuming all the LEDs are on full white, usually the actual current for colorful design is less than 1/3 of the max current. A good power supply such as our 5V 2A or 5V 4A supply is key!
- The strip is very thin and does not transfer a lot of heat, so don't have all the LEDs on bright white all the time or you could get thermal damage.
- Second, to get high density, the controller chip is inside the LED, which is kind of cool, but also means that the chip only uses a single pin for input and a single pin for output. The protocol used is very very timing-specific and can only be controlled by microcontrollers with highly repeatable 100nS timing precision. We have example code for using with the Arduino Uno/Mega microcontroller at 8MHz and 16MHz, and with a little effort you can use with the Raspberry Pi, or Beagle Bone Black, but it will not work with the Basic Stamp or any other interpreted/virtual machine microprocessor or any processor slower than 8 MHz. For those processors, check our DotStar digital LED strip which has SPI-like input/output and works easily with Pi and other processors.
- The way the pixels are controlled by an Arduino, the entire strip must be buffered in memory, and we've found many Arduino UNO projects only have about 1500bytes of RAM available after all the extras are included - enough for about 500 LED pixels. If you want to drive the entire strip and have some other libraries included, you may need to use a Mega.
There are 75 LEDs in this half-meter strip (so, the density is 150 RGB LEDs per meter), and you can control each LED individually! Yes, that's right, this is the digitally-addressable type of LED strip. You can set the color of each LED's red, green and blue component with 8-bit PWM precision (so 24-bit color per pixel). The LEDs are controlled by shift-registers that are chained up down the strip so you can shorten or lengthen the strip. Only 1 digital output pin are required to send data down. The PWM is built into each LED-chip so once you set the color you can stop talking to the strip and it will continue to PWM all the LEDs for you
The strip is made of flexible PCB material, with some tape on the back. It does not come with weatherproof sheathing. You can cut this stuff pretty easily with wire cutters, there are cut-lines every 7mm / 0.27" (1 LED each). The power/ground pads are on the top, the signal pad on the bottom. You can carefully solder to the copper pads and you're good to go. Of course, you can also connect strips together to make them longer, just watch how much current you need! We have a 5V/4A supply that should be able to drive 1 meter and a 5V/10A supply that can drive up to 10 meters (depending on use) You must use a 5V DC power supply to power these strips, do not use higher than 6V or you can destroy the entire strip.
These come in half meter strips with some short wires connected to the input pins. If you buy multiples, you will get multiple half meter strips, they will not come on a continuous strip!
Jargon buster
Plain-language definitions for the technical terms used above.
- DC
- DC means direct current, where electricity flows in one constant direction, as supplied by batteries, USB ports and many plug-pack power supplies. When a product specifies DC, it runs from a DC supply rather than mains AC, so you need to provide the correct voltage and polarity.
- LED
- A light-emitting diode (LED) is a small electronic component that emits light when current flows through it in the correct direction. Because it only conducts one way, its polarity matters, and a through-hole LED must be soldered the correct way around to light up.
- microcontroller
- A microcontroller is a small computer on a single chip that runs a stored program and controls connected inputs and outputs such as buttons, sensors, displays and communication interfaces. In a device built around one, it is the part that executes the code and coordinates the device's behaviour.
- NeoPixel
- A type of addressable LED system where colour data is sent along a single digital data line from one LED or controller to the next. Compatibility matters because the timing and signal format must match for the lights or driver board to respond correctly.
- PCB
- A printed circuit board (PCB) is a board, usually rigid, with etched copper tracks that connect electronic components together without loose wiring. Components are mounted on the board and signals route between them through the copper layout.
- PWM
- Pulse Width Modulation is a way for a digital pin to simulate variable output power by switching on and off very quickly. It matters for controlling things like LED brightness, motor speed, or servo-style signals from a microcontroller pin.
- RAM
- RAM (random-access memory) is fast, temporary memory a device uses for working data while it is running; in its common volatile form, its contents are lost when power is removed. Some devices offer a mode that applies settings to RAM only, which is handy for testing changes temporarily because they are not stored permanently and disappear at power-off.
- RGB
- Short for red, green and blue, the three primary colours of light that are mixed in varying amounts to make a wide range of colours. In electronics RGB can refer to an LED or pixel that blends these three colours, or to a colour signal or interface that carries separate red, green and blue channels.
- SPI
- A fast serial communication bus often used for displays, memory cards, and sensors. It matters because SPI devices need specific pins for clock and data, plus a separate chip-select line for each device.
Find this product in
Brands
Components
neopixels on raspberry pi
Document · 863.2 KB · Click any page to view full size
Resources & Downloads
Guides, code examples, and more
Related Tutorials
Free guides on learn.littlebird.com.au