This LED Strip Light uses SMD 2835 chips across 240 LEDs per 5-meter roll, emitting purple light and running on 12V DC. It’s built for indoor use only, carrying an IP20 protection rating with no water resistance.
The strip mounts on a white PCB with pre-applied double-sided adhesive backing for quick installation, and can be cut along designated copper cut marks to fit custom lengths. Its flexible construction allows it to bend around corners for contour lighting.
Each roll measures 5 meters (16.4 ft), making it suited for ambient accent lighting, PC case mods, display cases, and DIY custom lighting setups.
Features:
SMD 2835 LED chips, 240 LEDs per roll
Purple emitting color
Operating voltage: 12V DC
5-meter roll length
Cuttable along copper cut marks
Flexible for corner mounting
Pre-applied double-sided adhesive backing
IP20 rating — indoor use only
🔌
Pin Connections
1 Table
Pin Connections Table 1
Board
Sensor Pin
Connection
Strip
to MOSFET switch
+12V direct; GND through a MOSFET gated by a board PWM pin
📟
LED Strip Light 2835 (240LED) 12V Non-Waterproof 5M
LED Strip Light 2835 (240LED) 12V Non-Waterproof 5M - Arduino Mega
LED Strip Light 2835 (240LED) 12V Non-Waterproof 5M - ESP32
LED Strip Light 2835 (240LED) 12V Non-Waterproof 5M - ESP8266
LED Strip Light 2835 (240LED) 12V Non-Waterproof 5M - STM32
LED Strip Light 2835 (240LED) 12V Non-Waterproof 5M - Raspberry Pi Pico
📄 File: led_strip_light_2835_(240led)_12v_non-waterproof_5m_-_arduino_uno.inoArduino Uno
565 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// This is a fixed-color (non-addressable) 12V strip - switch/dim it through a logic-level MOSFET, gated by PWM pin 9 on Arduino Uno. A GPIO pin cannot drive the strip directly (wrong voltage, not enough current).
6#define MOSFET_GATE_PIN 9
7
8voidsetup() {
9pinMode(MOSFET_GATE_PIN, OUTPUT);
10}
11
12voidloop() {
13for (int b = 0; b <= 255; b += 5) { analogWrite(MOSFET_GATE_PIN, b); delay(20); } // fade in
14for (int b = 255; b >= 0; b -= 5) { analogWrite(MOSFET_GATE_PIN, b); delay(20); } // fade out
5// This is a fixed-color (non-addressable) 12V strip - switch/dim it through a logic-level MOSFET, gated by PWM pin 9 on Arduino Nano. A GPIO pin cannot drive the strip directly (wrong voltage, not enough current).
6#define MOSFET_GATE_PIN 9
7
8voidsetup() {
9pinMode(MOSFET_GATE_PIN, OUTPUT);
10}
11
12voidloop() {
13for (int b = 0; b <= 255; b += 5) { analogWrite(MOSFET_GATE_PIN, b); delay(20); } // fade in
14for (int b = 255; b >= 0; b -= 5) { analogWrite(MOSFET_GATE_PIN, b); delay(20); } // fade out
15}
📄 File: led_strip_light_2835_(240led)_12v_non-waterproof_5m_-_arduino_mega.inoArduino Mega
566 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// This is a fixed-color (non-addressable) 12V strip - switch/dim it through a logic-level MOSFET, gated by PWM pin 9 on Arduino Mega. A GPIO pin cannot drive the strip directly (wrong voltage, not enough current).
6#define MOSFET_GATE_PIN 9
7
8voidsetup() {
9pinMode(MOSFET_GATE_PIN, OUTPUT);
10}
11
12voidloop() {
13for (int b = 0; b <= 255; b += 5) { analogWrite(MOSFET_GATE_PIN, b); delay(20); } // fade in
14for (int b = 255; b >= 0; b -= 5) { analogWrite(MOSFET_GATE_PIN, b); delay(20); } // fade out
5// This is a fixed-color (non-addressable) 12V strip - switch/dim it through a logic-level MOSFET, gated by PWM pin 25 on ESP32. A GPIO pin cannot drive the strip directly (wrong voltage, not enough current).
6#define MOSFET_GATE_PIN 25
7
8voidsetup() {
9pinMode(MOSFET_GATE_PIN, OUTPUT);
10}
11
12voidloop() {
13for (int b = 0; b <= 255; b += 5) { analogWrite(MOSFET_GATE_PIN, b); delay(20); } // fade in
14for (int b = 255; b >= 0; b -= 5) { analogWrite(MOSFET_GATE_PIN, b); delay(20); } // fade out
5// This is a fixed-color (non-addressable) 12V strip - switch/dim it through a logic-level MOSFET, gated by PWM pin D1 on ESP8266. A GPIO pin cannot drive the strip directly (wrong voltage, not enough current).
6#define MOSFET_GATE_PIN D1
7
8voidsetup() {
9pinMode(MOSFET_GATE_PIN, OUTPUT);
10}
11
12voidloop() {
13for (int b = 0; b <= 255; b += 5) { analogWrite(MOSFET_GATE_PIN, b); delay(20); } // fade in
14for (int b = 255; b >= 0; b -= 5) { analogWrite(MOSFET_GATE_PIN, b); delay(20); } // fade out
5// This is a fixed-color (non-addressable) 12V strip - switch/dim it through a logic-level MOSFET, gated by PWM pin PA8 on STM32. A GPIO pin cannot drive the strip directly (wrong voltage, not enough current).
6#define MOSFET_GATE_PIN PA8
7
8voidsetup() {
9pinMode(MOSFET_GATE_PIN, OUTPUT);
10}
11
12voidloop() {
13for (int b = 0; b <= 255; b += 5) { analogWrite(MOSFET_GATE_PIN, b); delay(20); } // fade in
14for (int b = 255; b >= 0; b -= 5) { analogWrite(MOSFET_GATE_PIN, b); delay(20); } // fade out
15}
📄 File: led_strip_light_2835_(240led)_12v_non-waterproof_5m_-_raspberry_pi_pico.inoRaspberry Pi Pico
573 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// This is a fixed-color (non-addressable) 12V strip - switch/dim it through a logic-level MOSFET, gated by PWM pin 15 on Raspberry Pi Pico. A GPIO pin cannot drive the strip directly (wrong voltage, not enough current).
6#define MOSFET_GATE_PIN 15
7
8voidsetup() {
9pinMode(MOSFET_GATE_PIN, OUTPUT);
10}
11
12voidloop() {
13for (int b = 0; b <= 255; b += 5) { analogWrite(MOSFET_GATE_PIN, b); delay(20); } // fade in
14for (int b = 255; b >= 0; b -= 5) { analogWrite(MOSFET_GATE_PIN, b); delay(20); } // fade out
15}
Fixed-color 12V SMD2835 LED strip.
نظرة عامة ومواصفات المنتج — بالعربية
LED Strip Light 2835 (240LED) 12V Non-Waterproof 5M Purble متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم LED Module، بسعر 250,00 EGP. كود المنتج لدينا: EK2018. المنتج متوفر في المخزون وجاهز للشحن الفوري لكل محافظات مصر مع إمكانية الدفع عند الاستلام.
أهم المواصفات الفنية:
Product Type: Flexible LED Strip Light
Led Chip Type: SMD 2835
Led Quantity: 240 LEDs
Emitting Color: Purple
Operating Voltage: 12V DC
Length: 5 Meters (16.4 ft) per roll
Protection Rating: IP20 (Non-Waterproof)
Pcb Color: White
هذا المنتج مناسب لمشاريع الأردوينو (Arduino) و ESP32 و Raspberry Pi، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.