









| Parameter | Value |
|---|---|
| Voltage Rating | 3V to 12V (depending on model) |
| Current Rating | 50mA to 300mA |
| Power Rating | 0.15W to 3.6W |
| Light Output | Varies (e.g., 5-50 lumens) |
| Bulb Type | Incandescent or LED |
| Base Type | Screw or bayonet |
| Parameter | Value |
|---|---|
| Material | Plastic or metal |
| Mounting Type | Panel mount or free-standing |
| Connection Type | Solder terminals or screw terminals |
| Dimensions | Varies (e.g., 10mm to 20mm diameter) |
| Pin/Terminal | Description |
|---|---|
| Positive Terminal | Connects to the positive side of the power source. |
| Negative Terminal | Connects to the negative side of the power source. |
You can use the small bulb with holder as an indicator light in an Arduino project. Below is an example of how to connect and control the bulb using a digital pin.
// Small Bulb Control with Arduino UNO
// This code turns the bulb ON for 1 second and OFF for 1 second in a loop.
const int bulbPin = 9; // Define the pin connected to the bulb
void setup() {
pinMode(bulbPin, OUTPUT); // Set the bulb pin as an output
}
void loop() {
digitalWrite(bulbPin, HIGH); // Turn the bulb ON
delay(1000); // Wait for 1 second
digitalWrite(bulbPin, LOW); // Turn the bulb OFF
delay(1000); // Wait for 1 second
}
Bulb Does Not Light Up:
Bulb Flickers:
Bulb Burns Out Quickly:
Holder Feels Hot:
Can I use the small bulb with a battery? Yes, as long as the battery voltage matches the bulb's voltage rating.
What type of resistor should I use with an LED bulb? Use Ohm's Law (R = V/I) to calculate the resistor value based on the voltage drop and desired current.
Can I replace the bulb in the holder? Yes, most holders are designed for easy bulb replacement. Ensure the replacement bulb matches the holder's specifications.
Is the holder waterproof? Most holders are not waterproof unless explicitly stated. Use appropriate enclosures for outdoor applications.