This LED Strip Light uses SMD 2835 chips at a density of 240 LEDs per meter (1200 LEDs per 5-meter roll), emitting green light and running on 12V DC. It carries an IP20 rating, meaning it’s built for indoor use only.
The strip comes in 8mm or 10mm PCB widths and mounts using pre-applied 3M double-sided adhesive tape. It can typically be cut every 3 LEDs (1.25cm), and supports dimming when paired with an external 12V PWM dimmer.
Rated for a lifespan of 50,000+ hours, this strip suits indoor accent lighting, under-cabinet lighting, shelving, and architectural display applications.
Features:
SMD 2835 LED chips at 240 LEDs/meter density
Green color
Operating voltage: 12V DC
Cuttable every 3 LEDs (1.25cm)
Dimmable with external 12V PWM dimmer
Lifespan: 50,000+ hours
8mm/10mm PCB width options
Pre-applied 3M adhesive backing
🔌
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 Green متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم LED Module، بسعر 250,00 EGP. كود المنتج لدينا: EK2015. المنتج متوفر في المخزون وجاهز للشحن الفوري لكل محافظات مصر مع إمكانية الدفع عند الاستلام.
أهم المواصفات الفنية:
Led Chip Type: SMD 2835
Emitting Color: Green
كثافة الليدات: 240 LEDs/meter / 1200 LEDs/Roll
Operating Voltage: 12V DC
Strip Length: 5 Meters (1 Roll)
Protection Rating: IP20 (Non-Waterproof)
Pcb Width: 8mm / 10mm
Cuttable: Yes (Every 3 LEDs/1.25cm)
هذا المنتج مناسب لمشاريع الأردوينو (Arduino) و ESP32 و Raspberry Pi، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.