LED Module 5054 12V IP65 Red

LED Module 5054 12V IP65 Red
1. LED Chip: SMD 5054, 3 LEDs/module
2. Color: Red
3. Operating Voltage: 12V DC
4. Protection Rating: IP65
5. Beam Angle: 120°
6. Lifespan: ≥50,000 Hours

Apple Shopping Event

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

3,50 EGP

15 People watching this product now!

Payment Methods:

Description

This LED module uses a single SMD 5054 high-brightness LED chip package containing 3 LEDs per module, emitting red light through a 120° beam angle. It runs on 12V DC and draws between 0.72W and 1.0W per module.

The module is housed in an injection-molded PVC casing with a clear epoxy cover, giving it an IP65 protection rating suitable for outdoor and weather-exposed installations. Mounting is handled via pre-applied 3M adhesive tape, backed up by a mounting screw hole for more secure fixing.

Rated for continuous operation between -20°C and 60°C with a lifespan of 50,000+ hours, these modules are supplied 20 per string, making them suited to channel-letter signage and storefront lighting runs.

Features:

  1. SMD 5054 high-brightness LED chip, 3 LEDs per module
  2. Red emitting color
  3. 120° beam angle for wide light spread
  4. IP65 waterproof/weather-resistant rating
  5. Power draw: 0.72W–1.0W per module at 12V DC
  6. Operating temperature: -20°C to 60°C
  7. Lifespan: 50,000+ hours
  8. Supplied 20 modules per string
🔌
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 Red متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم LED Module، بسعر 3,50 EGP. كود المنتج لدينا: EK2035. المنتج متوفر في المخزون وجاهز للشحن الفوري لكل محافظات مصر مع إمكانية الدفع عند الاستلام.

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

  • Led Chip Type: SMD 5054 (High Brightness)
  • Leds Per Module: 3
  • Emitting Color: Red
  • Operating Voltage: 12V DC
  • Power Consumption: 0.72W ~ 1.0W per module
  • Protection Rating: IP65
  • 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
Emitting ColorRed
Operating Voltage12V DC
Power Consumption0.72W ~ 1.0W per module
Protection RatingIP65
Beam Angle120°
Casing MaterialInjection-Molded PVC, Clear Epoxy Cover
Mounting Method3M Adhesive Tape, Mounting Screw Hole
Operating Temperature-20°C ~ 60°C
Lifespan≥50,000 Hours
Standard Packaging20 Modules per string

Customer Reviews