LED Module 5054 12V IP65 Pink

Apple Shopping Event

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

5,00 EGP

7 People watching this product now!

Payment Methods:

Description

Add vibrant pink illumination to signs, channel letters, and light boxes with this 5054 SMD LED module, running on 12V DC. Designed for backlighting applications, this module is IP65 rated for water and dust resistance, making it suitable for both indoor and outdoor signage where exposure to moisture and dust is a concern.

Each module features high-brightness 5054 SMD LEDs mounted on a compact PCB with a pre-attached 3M adhesive backing for quick, tool-free installation inside light boxes and signage enclosures. The pink color output makes it a popular choice for decorative lighting, storefront signs, advertising displays, and channel letter backlighting where a bold, eye-catching color is needed. Modules are typically wired in parallel strings, allowing multiple units to be connected together for larger signage projects.

Built for long-term reliability, this LED module offers low power consumption, stable pink color output, and durable construction suited to continuous operation in commercial signage applications.

Key Features

  • 5054 SMD LED Chips – High-brightness LEDs for strong, consistent pink illumination
  • 12V DC Operation – Compatible with standard 12V LED power supplies and signage drivers
  • IP65 Water/Dust Resistant – Suitable for outdoor and semi-exposed signage applications
  • Pink Color Output – Vibrant, eye-catching color ideal for decorative and advertising signage
  • 3M Adhesive Backing – Quick, tool-free mounting inside light boxes and channel letters
  • Parallel Wiring Design – Easily link multiple modules together for larger sign projects
  • Compact Module Size – Space-saving design fits standard channel letter and light box depths
  • Low Power Consumption – Energy-efficient compared to traditional signage lighting
  • Long Operating Lifespan – Durable build suited for continuous commercial use

Specifications

Specification Detail
LED Chip Type SMD 5054
Voltage 12V DC
Color Pink
IP Rating IP65 (water/dust resistant)
Wiring Parallel connection, pre-wired leads
Mounting 3M adhesive backing
Application Channel letters, light boxes, signage, advertising displays, decorative lighting
Number of LEDs per Module (confirm with supplier — commonly 3 LEDs per module)
Module Dimensions (confirm with supplier)
Wire Lead Length (confirm with supplier)
Viewing Angle (confirm with supplier — typically 120°)
Power Consumption per Module (confirm with supplier — commonly ~0.72W-1W)

Suggested Package Includes

  • LED 5054 Modules (specify quantity per pack — e.g., 10pcs/20pcs/100pcs per set)
🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
Moduleto MOSFET switch+12V direct; GND through a MOSFET gated by a board PWM pin
📟
LED Module 5054 12V IP65
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
LED Module 5054 12V IP65 - Arduino Uno
LED Module 5054 12V IP65 - Arduino Nano
LED Module 5054 12V IP65 - Arduino Mega
LED Module 5054 12V IP65 - ESP32
LED Module 5054 12V IP65 - ESP8266
LED Module 5054 12V IP65 - STM32
LED Module 5054 12V IP65 - Raspberry Pi Pico
📄 File: led_module_5054_12v_ip65_-_arduino_uno.inoArduino Uno
366 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Fixed-color 12V LED module - switch/dim through a logic-level MOSFET, gated by PWM pin 9 on Arduino Uno.
6#define MOSFET_GATE_PIN 9
7
8void setup() {
9 pinMode(MOSFET_GATE_PIN, OUTPUT);
10}
11
12void loop() {
13 analogWrite(MOSFET_GATE_PIN, 200);
14 delay(2000);
15 analogWrite(MOSFET_GATE_PIN, 0);
16 delay(1000);
17}
📄 File: led_module_5054_12v_ip65_-_arduino_nano.inoArduino Nano
367 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Fixed-color 12V LED module - switch/dim through a logic-level MOSFET, gated by PWM pin 9 on Arduino Nano.
6#define MOSFET_GATE_PIN 9
7
8void setup() {
9 pinMode(MOSFET_GATE_PIN, OUTPUT);
10}
11
12void loop() {
13 analogWrite(MOSFET_GATE_PIN, 200);
14 delay(2000);
15 analogWrite(MOSFET_GATE_PIN, 0);
16 delay(1000);
17}
📄 File: led_module_5054_12v_ip65_-_arduino_mega.inoArduino Mega
367 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Fixed-color 12V LED module - switch/dim through a logic-level MOSFET, gated by PWM pin 9 on Arduino Mega.
6#define MOSFET_GATE_PIN 9
7
8void setup() {
9 pinMode(MOSFET_GATE_PIN, OUTPUT);
10}
11
12void loop() {
13 analogWrite(MOSFET_GATE_PIN, 200);
14 delay(2000);
15 analogWrite(MOSFET_GATE_PIN, 0);
16 delay(1000);
17}
📄 File: led_module_5054_12v_ip65_-_esp32.inoESP32
362 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Fixed-color 12V LED module - switch/dim through a logic-level MOSFET, gated by PWM pin 25 on ESP32.
6#define MOSFET_GATE_PIN 25
7
8void setup() {
9 pinMode(MOSFET_GATE_PIN, OUTPUT);
10}
11
12void loop() {
13 analogWrite(MOSFET_GATE_PIN, 200);
14 delay(2000);
15 analogWrite(MOSFET_GATE_PIN, 0);
16 delay(1000);
17}
📄 File: led_module_5054_12v_ip65_-_esp8266.inoESP8266
364 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Fixed-color 12V LED module - switch/dim through a logic-level MOSFET, gated by PWM pin D1 on ESP8266.
6#define MOSFET_GATE_PIN D1
7
8void setup() {
9 pinMode(MOSFET_GATE_PIN, OUTPUT);
10}
11
12void loop() {
13 analogWrite(MOSFET_GATE_PIN, 200);
14 delay(2000);
15 analogWrite(MOSFET_GATE_PIN, 0);
16 delay(1000);
17}
📄 File: led_module_5054_12v_ip65_-_stm32.inoSTM32
364 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Fixed-color 12V LED module - switch/dim through a logic-level MOSFET, gated by PWM pin PA8 on STM32.
6#define MOSFET_GATE_PIN PA8
7
8void setup() {
9 pinMode(MOSFET_GATE_PIN, OUTPUT);
10}
11
12void loop() {
13 analogWrite(MOSFET_GATE_PIN, 200);
14 delay(2000);
15 analogWrite(MOSFET_GATE_PIN, 0);
16 delay(1000);
17}
📄 File: led_module_5054_12v_ip65_-_raspberry_pi_pico.inoRaspberry Pi Pico
374 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Fixed-color 12V LED module - switch/dim through a logic-level MOSFET, gated by PWM pin 15 on Raspberry Pi Pico.
6#define MOSFET_GATE_PIN 15
7
8void setup() {
9 pinMode(MOSFET_GATE_PIN, OUTPUT);
10}
11
12void loop() {
13 analogWrite(MOSFET_GATE_PIN, 200);
14 delay(2000);
15 analogWrite(MOSFET_GATE_PIN, 0);
16 delay(1000);
17}
Fixed-color 12V LED module.

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

LED Module 5054 12V IP65 Pink متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم LED Module، بسعر 5,00 EGP. كود المنتج لدينا: EK2041. المنتج متوفر في المخزون وجاهز للشحن الفوري لكل محافظات مصر مع إمكانية الدفع عند الاستلام.

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

  • Led Chip Type: SMD 5054 (High Brightness)
  • Leds Per Module: 3 LEDs
  • Emitting Color: Pink
  • Operating Voltage: 12V DC
  • Power Consumption (Per Module): 0.72W ~ 1.0W
  • Protection Rating: IP65 (Waterproof / Weather Resistant)
  • Beam Angle: 120°
  • Casing Material: Injection-Molded PVC / Clear Epoxy Cover

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

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

Specification

Specification

WeightWeight10 g
Dimensions5 × 4 × 2 cm
LED Chip TypeSMD 5054 (High Brightness)
LEDs Per Module3 LEDs
Emitting ColorPink
Operating Voltage12V DC
Power Consumption (Per Module)0.72W ~ 1.0W
Protection RatingIP65 (Waterproof / Weather Resistant)
Beam Angle120°
Casing MaterialInjection-Molded PVC, Clear Epoxy Cover
Mounting MethodPre-applied 3M Adhesive Tape, Mounting Screw Hole
Operating Temperature-20°C ~ 60°C
Lifespan≥ 50,000 Hours
Standard Packaging20 Modules per string
ApplicationsChannel Letters, Storefront Signage, DIY Decorative Lighting, Architectural Accent Lighting

Customer Reviews