8 bit WS2812 5050 RGB light LED Circle Melingkar

  • Fast Shipping

    Receive products in amazing time
  • Easy Returns

    Return policy that lets you shop at ease
  • Always Authentic

    We only sell 100% authentic products
  • Secure Shopping

    Your data is always protected

Rp19.500 Rp20.000

49 in stock

SKU: E7-B08 Category:

Description

Apa itu WS2812 5050 RGB LED Circle?

  • Modul LED berbentuk lingkaran yang berisi 8 buah LED WS2812B tipe 5050 RGB addressable.

  • Masing-masing LED bisa dikontrol warnanya (R, G, B) dan intensitasnya secara independen melalui satu pin data digital.

  • Sangat populer untuk efek cahaya, animasi, indikator visual, jam analog LED, atau dekorasi IoT/robot.


⚙️ Spesifikasi Utama

  • Chip LED: WS2812B (5050 RGB LED dengan IC driver internal)

  • Jumlah LED: 8 pcs

  • Tegangan kerja: 5V DC

  • Arus per LED: ±60 mA (pada warna putih penuh) → 8 LED ≈ 480 mA max

  • Kontrol: Single-wire digital (protokol WS2812)

  • Daisy-chain support: bisa dihubungkan beberapa ring/strip → data DO ke DI modul berikutnya


📍 Pinout Modul WS2812 Circle

Umumnya ada 4 pad koneksi:

Pin Fungsi
VCC +5V supply
GND Ground
DIN Data input (dari Arduino/ESP32)
DOUT Data output (ke modul berikutnya)

🔌 Contoh Koneksi ke Arduino UNO

WS2812 Arduino UNO
VCC 5V
GND GND
DIN D6 (bebas, misal D6)

(disarankan tambah resistor 330Ω di jalur DIN, dan kapasitor 1000 µF di VCC untuk stabilisasi)


💻 Contoh Program Arduino (Library FastLED)

#include <FastLED.h>

#define LED_PIN 6 // pin data ke DIN
#define NUM_LEDS 8 // jumlah LED di circle
CRGB leds[NUM_LEDS];

void setup() {
FastLED.addLeds<WS2812, LED_PIN, GRB>(leds, NUM_LEDS);
FastLED.clear();
}

void loop() {
// Efek larik warna pelangi
for(int i = 0; i < NUM_LEDS; i++) {
leds[i] = CHSV(i * 32, 255, 255);
}
FastLED.show();
delay(200);

// Efek berputar
static uint8_t j = 0;
leds[j] = CRGB::Red;
FastLED.show();
delay(100);
leds[j] = CRGB::Black;
j = (j + 1) % NUM_LEDS;
}

📌 Hasil: LED akan menampilkan gradasi warna, lalu efek berputar merah.


🎯 Aplikasi Umum

  • Jam analog LED (8 LED mewakili jam/menit).

  • Indikator status (proyek IoT/robot).

  • Lampu dekorasi & animasi.

  • Efek visual game/VR.

  • Indicator sensor (misal suhu → warna berubah).


⚠️ Catatan Penting

  • Pastikan catu daya cukup (setiap LED penuh putih = 60 mA → 8 LED ≈ 0.5 A).

  • Kalau banyak ring disambungkan, lebih baik supply langsung ke VCC tiap modul.

  • Jangan langsung hubungkan DIN ke 5V device kalau pakai ESP32/ESP8266 (3.3V) → gunakan level shifter untuk hasil lebih stabil.

0.0/5
0 reviews
0
0
0
0
0

There are no reviews yet.

Be the first to review “8 bit WS2812 5050 RGB light LED Circle Melingkar”