12V Wire Lead Lamp – 400mA Mini Bulb with Pre-Soldered Wires

  • 12V DC mini bulb with wire leads
  • 400mA current draw
  • Pre-soldered flexible wires
  • Compact and easy to install
  • Ideal for automotive, models, and DIY projects

Apple Shopping Event

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

10,00 EGP

20 People watching this product now!

Payment Methods:

Description

This 12V Wire Lead Lamp (400mA) is a compact, high-brightness miniature bulb ideal for low-voltage lighting applications. Equipped with pre-attached flexible wire leads, it is easy to install in hobby projects, automotive indicator panels, dashboard lights, model displays, and various DIY circuits. The lamp operates efficiently at 12 volts, drawing only 400mA of current while providing a stable and bright output. Its small size and versatile design make it suitable for confined spaces or custom enclosures.


Key Features

  • Rated for 12V DC operation

  • Current draw: 400mA for efficient power use

  • Pre-soldered wire leads for quick installation

  • Compact size for versatile use in small enclosures

  • ✅ Ideal for automotive, model making, displays, and DIY projects

  • Warm glow output similar to incandescent mini bulbs


Specifications

Parameter Value
Operating Voltage 12V DC
Current Rating 400mA
Power Consumption Approx. 4.8 Watts
Light Type Miniature Incandescent Lamp / Bulb
Wire Leads Flexible, pre-attached
Wire Length Approx. 15–20 cm
Light Color Warm White / Clear (varies)
Housing Type Glass bulb with metal base
Application Indicators, Models, Automotive, DIY

Package Includes

  • 1 × 12V 400mA Wire Lead Lamp
    (Custom wire length or quantity available on request)

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
Bulbto switching transistorbulb lead into a transistor/relay switch gated by a board pin
📟
12V Wire Lead Lamp - 400mA Mini Bulb with Pre-Soldered Wires
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
12V Wire Lead Lamp - 400mA Mini Bulb with Pre-Soldered Wires - Arduino Uno
12V Wire Lead Lamp - 400mA Mini Bulb with Pre-Soldered Wires - Arduino Nano
12V Wire Lead Lamp - 400mA Mini Bulb with Pre-Soldered Wires - Arduino Mega
12V Wire Lead Lamp - 400mA Mini Bulb with Pre-Soldered Wires - ESP32
12V Wire Lead Lamp - 400mA Mini Bulb with Pre-Soldered Wires - ESP8266
12V Wire Lead Lamp - 400mA Mini Bulb with Pre-Soldered Wires - STM32
12V Wire Lead Lamp - 400mA Mini Bulb with Pre-Soldered Wires - Raspberry Pi Pico
📄 File: 12v_wire_lead_lamp_-_400ma_mini_bulb_with_pre-soldered_wires_-_arduino_uno.inoArduino Uno
323 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 9 on Arduino Uno
6#define LED_PIN 9
7
8void setup() {
9 pinMode(LED_PIN, OUTPUT);
10}
11
12void loop() {
13 for (int b = 0; b <= 255; b += 5) { analogWrite(LED_PIN, b); delay(15); }
14 for (int b = 255; b >= 0; b -= 5) { analogWrite(LED_PIN, b); delay(15); }
15}
📄 File: 12v_wire_lead_lamp_-_400ma_mini_bulb_with_pre-soldered_wires_-_arduino_nano.inoArduino Nano
324 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 9 on Arduino Nano
6#define LED_PIN 9
7
8void setup() {
9 pinMode(LED_PIN, OUTPUT);
10}
11
12void loop() {
13 for (int b = 0; b <= 255; b += 5) { analogWrite(LED_PIN, b); delay(15); }
14 for (int b = 255; b >= 0; b -= 5) { analogWrite(LED_PIN, b); delay(15); }
15}
📄 File: 12v_wire_lead_lamp_-_400ma_mini_bulb_with_pre-soldered_wires_-_arduino_mega.inoArduino Mega
324 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 9 on Arduino Mega
6#define LED_PIN 9
7
8void setup() {
9 pinMode(LED_PIN, OUTPUT);
10}
11
12void loop() {
13 for (int b = 0; b <= 255; b += 5) { analogWrite(LED_PIN, b); delay(15); }
14 for (int b = 255; b >= 0; b -= 5) { analogWrite(LED_PIN, b); delay(15); }
15}
📄 File: 12v_wire_lead_lamp_-_400ma_mini_bulb_with_pre-soldered_wires_-_esp32.inoESP32
319 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 25 on ESP32
6#define LED_PIN 25
7
8void setup() {
9 pinMode(LED_PIN, OUTPUT);
10}
11
12void loop() {
13 for (int b = 0; b <= 255; b += 5) { analogWrite(LED_PIN, b); delay(15); }
14 for (int b = 255; b >= 0; b -= 5) { analogWrite(LED_PIN, b); delay(15); }
15}
📄 File: 12v_wire_lead_lamp_-_400ma_mini_bulb_with_pre-soldered_wires_-_esp8266.inoESP8266
321 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin D1 on ESP8266
6#define LED_PIN D1
7
8void setup() {
9 pinMode(LED_PIN, OUTPUT);
10}
11
12void loop() {
13 for (int b = 0; b <= 255; b += 5) { analogWrite(LED_PIN, b); delay(15); }
14 for (int b = 255; b >= 0; b -= 5) { analogWrite(LED_PIN, b); delay(15); }
15}
📄 File: 12v_wire_lead_lamp_-_400ma_mini_bulb_with_pre-soldered_wires_-_stm32.inoSTM32
321 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin PA8 on STM32
6#define LED_PIN PA8
7
8void setup() {
9 pinMode(LED_PIN, OUTPUT);
10}
11
12void loop() {
13 for (int b = 0; b <= 255; b += 5) { analogWrite(LED_PIN, b); delay(15); }
14 for (int b = 255; b >= 0; b -= 5) { analogWrite(LED_PIN, b); delay(15); }
15}
📄 File: 12v_wire_lead_lamp_-_400ma_mini_bulb_with_pre-soldered_wires_-_raspberry_pi_pico.inoRaspberry Pi Pico
331 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 15 on Raspberry Pi Pico
6#define LED_PIN 15
7
8void setup() {
9 pinMode(LED_PIN, OUTPUT);
10}
11
12void loop() {
13 for (int b = 0; b <= 255; b += 5) { analogWrite(LED_PIN, b); delay(15); }
14 for (int b = 255; b >= 0; b -= 5) { analogWrite(LED_PIN, b); delay(15); }
15}
Simple 12V incandescent bulb - switch through a transistor/relay (400mA exceeds most GPIO pin ratings).

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

12V Wire Lead Lamp – 400mA Mini Bulb with Pre-Soldered Wires متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم LED Dot Matrix Display وLEDs and Indicators، بسعر 10,00 EGP. كود المنتج لدينا: EK1806. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

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

  • جهد التشغيل: 12V DC
  • Current Rating: 400mA
  • Power Consumption: Approx. 4.8 Watts
  • Light Type: Miniature Incandescent Lamp / Bulb
  • Wire Leads: Flexible, pre-attached
  • Wire Length: Approx. 15–20 cm
  • Light Color: Warm White / Clear (varies)
  • Housing Type: Glass bulb with metal base

منتج أصلي بجودة مضمونة من إكوسترا، مع دعم فني ومتابعة بعد البيع لكل عملائنا في مصر.

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

Specification

Specification

WeightWeight10 g
Dimensions5 × 4 × 2 cm
operating-voltage12V DC
current-rating400mA
power-consumptionApprox. 4.8 Watts
light-typeMiniature Incandescent Lamp / Bulb
wire-leadsFlexible, pre-attached
wire-lengthApprox. 15–20 cm
light-colorWarm White / Clear (varies)
housing-typeGlass bulb with metal base
applicationIndicators, Models, Automotive, DIY

Customer Reviews