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

LED Strip Light 2835 (240LED) 12V Non-Waterproof 5M Purple
1. LED Chip: SMD 2835
2. LED Quantity: 240 LEDs
3. Color: Purple
4. Operating Voltage: 12V DC
5. Length: 5 Meters
6. Protection Rating: IP20 (Indoor Only)

Apple Shopping Event

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

250,00 EGP

11 People watching this product now!

Payment Methods:

Description

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:

  1. SMD 2835 LED chips, 240 LEDs per roll
  2. Purple emitting color
  3. Operating voltage: 12V DC
  4. 5-meter roll length
  5. Cuttable along copper cut marks
  6. Flexible for corner mounting
  7. Pre-applied double-sided adhesive backing
  8. IP20 rating — indoor use only
🔌
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 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، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.

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

Specification

Specification

WeightWeight10 g
Dimensions5 × 4 × 2 cm
Product TypeFlexible LED Strip Light
LED Chip TypeSMD 2835
LED Quantity240 LEDs
Emitting ColorPurple
Operating Voltage12V DC
Length5 Meters (16.4 ft) per roll
Protection RatingIP20 (Non-Waterproof)
PCB ColorWhite
Mounting MethodPre-applied Double-Sided Adhesive
CuttableYes (Along copper cut marks)
FlexibilityHigh

Customer Reviews