# 1x8 Addressable LED Stick

**Type:** Product page · **SKU:** CE09638 · **Brand:** [Core Electronics](https://core-electronics.com.au/brands/core-electronics-australia)
**Page:** https://core-electronics.com.au/1x8-add-led-strip.html ([markdown](https://core-electronics.com.au/1x8-add-led-strip.html.md))

Add some sparkle to your projects!

## Pricing

- **Price:** $2.40 (inc GST) — $2.18 AUD, exc GST
- **Quantity discounts:** 5+ $2.14 (exc GST) · 15+ $2.07 (exc GST)

## Availability & dispatch

- In stock, ships same business day if ordered before 2PM (Australia/Sydney).
- We can dispatch 40 today; more stock is typically available with a 8–12 day lead time.

## Description

Perfect for showing basic data or making some flashy cosplay pieces!

This 1x8 WS2812 stick has lots of libraries for different development boards.

Talk to each pixel individually through the single-wire protocol.

### Specifications

- 1x8 WS2812 LED's
- 16 million colours per pixel (24-bit colour)

### Examples

#### Raspberry Pi Pico - Micropython

 ```
import glowbit
from utime import sleep

stick = glowbit.stick(brightness = 20, pin=16) # (numLEDs = 16) # Optional argument for additional LEDs

######## Set individual pixels ########
stick.pixelSet(1, stick.white())
stick.pixelsShow()
sleep(1)

######## Blank pixels ########
stick.pixelsFill(stick.black())
stick.pixelsShow()
sleep(1)

######## Graphing data ########
graph = stick.graph1D()
for value in range(0, 256, 10):
    stick.updateGraph1D(graph, value)
    stick.pixelsShow()
 
for value in range(255, 0, -10):
    stick.updateGraph1D(graph, value)
    stick.pixelsShow()
    
stick.demo()
```

## Images

- [Product image 1](https://core-electronics.com.au/media/catalog/product/s/n/sny09785-edit.jpg)
