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:
Pink emitting color
IP67 waterproof rating for indoor/outdoor use
120 LEDs/meter density
120°–180° even illumination angle
Cuttable every 2.5cm at marked intervals
Heat-resistant silicone jacket
Lifespan: 50,000+ hours
5-meter roll length
🔌
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
📟
Neon Flexible LED Strip Light - 5 Meter, 12V DC - Waterproof Silicone
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
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: 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
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: 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
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 neon-style LED strip.
نظرة عامة ومواصفات المنتج — بالعربية
Neon Flexible LED Strip Light – 5 Meter, PINK, 12V DC – Waterproof Silicone متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم LED Module، بسعر 225,00 EGP. كود المنتج لدينا: EK2006. المنتج متوفر في المخزون وجاهز للشحن الفوري لكل محافظات مصر مع إمكانية الدفع عند الاستلام.
أهم المواصفات الفنية:
Power Type: 12V DC
Emitting Color: Pink
Length: 5 Meters
الخامة: Premium Silicone
Protection Rating: IP67
كثافة الليدات: 120 LEDs/meter
Cuttable: Yes (Every 2.5cm)
Illumination Angle: 120° ~ 180°
هذا المنتج مناسب لمشاريع الأردوينو (Arduino) و ESP32 و Raspberry Pi، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.