Neon Flexible LED Strip Light – 5 Meter, RED, 12V DC – Waterproof Silicone

Neon Flexible LED Strip Light – 5M Red
1. Emitting Color: Red
2. Operating Voltage: 12V DC
3. Protection Rating: IP67
4. LED Density: 120 LEDs/meter
5. Length: 5 Meters
6. Lifespan: ≥50,000 Hours

Apple Shopping Event

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

225,00 EGP

19 People watching this product now!

Payment Methods:

Description

This Neon Flexible LED Strip is a silicone-jacketed LED strip designed to mimic the diffused, continuous glow of traditional neon tubing while running on 12V DC. The silicone jacket is flexible and heat-resistant, letting the strip be bent and shaped for custom signage and edge lighting.

Inside, LEDs are packed at a density of 120 per meter, and the diffusing silicone spreads the light evenly across a 120°–180° illumination angle, avoiding the visible individual LED dots seen on standard uncovered strips.

The IP67 protection rating makes it suitable for both indoor and outdoor installations, and it can be cut roughly every 2.5cm at marked intervals to fit custom lengths. Mounting is done with clips or a separately sold silicone adhesive channel.

Features:

  1. Red emitting color
  2. IP67 waterproof rating for indoor/outdoor use
  3. 120 LEDs/meter density
  4. 120°–180° even illumination angle
  5. Cuttable every 2.5cm at marked intervals
  6. Heat-resistant silicone jacket
  7. Lifespan: 50,000+ hours
  8. 5-meter roll length
🔌
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
📟
Neon Flexible LED Strip Light - 5 Meter, 12V DC - Waterproof Silicone
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
Neon Flexible LED Strip Light - 5 Meter, 12V DC - Waterproof Silicone - Arduino Uno
Neon Flexible LED Strip Light - 5 Meter, 12V DC - Waterproof Silicone - Arduino Nano
Neon Flexible LED Strip Light - 5 Meter, 12V DC - Waterproof Silicone - Arduino Mega
Neon Flexible LED Strip Light - 5 Meter, 12V DC - Waterproof Silicone - ESP32
Neon Flexible LED Strip Light - 5 Meter, 12V DC - Waterproof Silicone - ESP8266
Neon Flexible LED Strip Light - 5 Meter, 12V DC - Waterproof Silicone - STM32
Neon Flexible LED Strip Light - 5 Meter, 12V DC - Waterproof Silicone - Raspberry Pi Pico
📄 File: neon_flexible_led_strip_light_-_5_meter,_12v_dc_-_waterproof_silicone_-_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: neon_flexible_led_strip_light_-_5_meter,_12v_dc_-_waterproof_silicone_-_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: neon_flexible_led_strip_light_-_5_meter,_12v_dc_-_waterproof_silicone_-_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: neon_flexible_led_strip_light_-_5_meter,_12v_dc_-_waterproof_silicone_-_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: neon_flexible_led_strip_light_-_5_meter,_12v_dc_-_waterproof_silicone_-_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: neon_flexible_led_strip_light_-_5_meter,_12v_dc_-_waterproof_silicone_-_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: neon_flexible_led_strip_light_-_5_meter,_12v_dc_-_waterproof_silicone_-_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 neon-style LED strip.

نظرة عامة ومواصفات المنتج — بالعربية

Neon Flexible LED Strip Light – 5 Meter, RED, 12V DC – Waterproof Silicone متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم LED Module، بسعر 225,00 EGP. كود المنتج لدينا: EK2005. المنتج متوفر في المخزون وجاهز للشحن الفوري لكل محافظات مصر مع إمكانية الدفع عند الاستلام.

أهم المواصفات الفنية:

  • Power Type: 12V DC
  • Emitting Color: Red
  • Length: 5 Meters
  • الخامة: Premium Silicone
  • Protection Rating: IP67
  • كثافة الليدات: 120 LEDs/meter
  • Cuttable: Yes (Every 2.5cm)
  • Illumination Angle: 120° ~ 180°

هذا المنتج مناسب لمشاريع الأردوينو (Arduino) و ESP32 و Raspberry Pi، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.

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

Specification

Specification

WeightWeight10 g
Dimensions5 × 4 × 2 cm
Power Type12V DC
Emitting ColorRed
Length5 Meters
MaterialPremium Silicone
Protection RatingIP67
LED Density120 LEDs/meter
CuttableYes (Every 2.5cm)
Illumination Angle120° ~ 180°
Lifespan≥50,000 Hours
Mounting MethodMounting Clips, Silicone Adhesive Channel (Sold Separately)

Customer Reviews