LED Strip Light 2835 (240LED) 12V Non-Waterproof 5M Green

LED Strip Light 2835 (240LED) 12V Non-Waterproof 5M Green
1. LED Chip: SMD 2835
2. Color: Green
3. LED Density: 240 LEDs/meter
4. Operating Voltage: 12V DC
5. Strip Length: 5 Meters
6. Lifespan: ≥50,000 Hours

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

250,00 EGP

16 People watching this product now!

Payment Methods:

Description

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:

  1. SMD 2835 LED chips at 240 LEDs/meter density
  2. Green color
  3. Operating voltage: 12V DC
  4. Cuttable every 3 LEDs (1.25cm)
  5. Dimmable with external 12V PWM dimmer
  6. Lifespan: 50,000+ hours
  7. 8mm/10mm PCB width options
  8. Pre-applied 3M adhesive backing
🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
Stripto MOSFET switch+12V direct; GND through a MOSFET gated by a board PWM pin
📟
LED Strip Light 2835 (240LED) 12V Non-Waterproof 5M
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
LED Strip Light 2835 (240LED) 12V Non-Waterproof 5M - Arduino Uno
LED Strip Light 2835 (240LED) 12V Non-Waterproof 5M - Arduino Nano
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
8void setup() {
9 pinMode(MOSFET_GATE_PIN, OUTPUT);
10}
11
12void loop() {
13 for (int b = 0; b <= 255; b += 5) { analogWrite(MOSFET_GATE_PIN, b); delay(20); } // fade in
14 for (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_nano.inoArduino Nano
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 Nano. A GPIO pin cannot drive the strip directly (wrong voltage, not enough current).
6#define MOSFET_GATE_PIN 9
7
8void setup() {
9 pinMode(MOSFET_GATE_PIN, OUTPUT);
10}
11
12void loop() {
13 for (int b = 0; b <= 255; b += 5) { analogWrite(MOSFET_GATE_PIN, b); delay(20); } // fade in
14 for (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
8void setup() {
9 pinMode(MOSFET_GATE_PIN, OUTPUT);
10}
11
12void loop() {
13 for (int b = 0; b <= 255; b += 5) { analogWrite(MOSFET_GATE_PIN, b); delay(20); } // fade in
14 for (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_-_esp32.inoESP32
561 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 25 on ESP32. A GPIO pin cannot drive the strip directly (wrong voltage, not enough current).
6#define MOSFET_GATE_PIN 25
7
8void setup() {
9 pinMode(MOSFET_GATE_PIN, OUTPUT);
10}
11
12void loop() {
13 for (int b = 0; b <= 255; b += 5) { analogWrite(MOSFET_GATE_PIN, b); delay(20); } // fade in
14 for (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_-_esp8266.inoESP8266
563 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 D1 on ESP8266. A GPIO pin cannot drive the strip directly (wrong voltage, not enough current).
6#define MOSFET_GATE_PIN D1
7
8void setup() {
9 pinMode(MOSFET_GATE_PIN, OUTPUT);
10}
11
12void loop() {
13 for (int b = 0; b <= 255; b += 5) { analogWrite(MOSFET_GATE_PIN, b); delay(20); } // fade in
14 for (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_-_stm32.inoSTM32
563 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 PA8 on STM32. A GPIO pin cannot drive the strip directly (wrong voltage, not enough current).
6#define MOSFET_GATE_PIN PA8
7
8void setup() {
9 pinMode(MOSFET_GATE_PIN, OUTPUT);
10}
11
12void loop() {
13 for (int b = 0; b <= 255; b += 5) { analogWrite(MOSFET_GATE_PIN, b); delay(20); } // fade in
14 for (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
8void setup() {
9 pinMode(MOSFET_GATE_PIN, OUTPUT);
10}
11
12void loop() {
13 for (int b = 0; b <= 255; b += 5) { analogWrite(MOSFET_GATE_PIN, b); delay(20); } // fade in
14 for (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، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.

تصفّح المزيد من LED Module في إكوسترا.

Specification

Specification

WeightWeight10 g
Dimensions5 × 4 × 2 cm
LED Chip TypeSMD 2835
Emitting ColorGreen
LED Density240 LEDs/meter, 1200 LEDs/Roll
Operating Voltage12V DC
Strip Length5 Meters (1 Roll)
Protection RatingIP20 (Non-Waterproof)
PCB Width8mm, 10mm
CuttableYes (Every 3 LEDs/1.25cm)
Mounting MethodPre-applied 3M Double-Sided Adhesive Tape
DimmableYes (Requires external 12V PWM dimmer)
Lifespan≥50,000 Hours

Customer Reviews