

A lamp holder, also known as a light bulb socket, is a device designed to secure and connect a light bulb to an electrical circuit. It provides a stable base for the bulb while ensuring proper electrical contact for operation. The Generic E27 Socket is a widely used lamp holder compatible with E27 screw-type bulbs, commonly found in residential, commercial, and industrial lighting applications.








| Parameter | Specification |
|---|---|
| Manufacturer | Generic |
| Part ID | E27 Socket |
| Compatible Bulb Type | E27 screw-type bulbs |
| Rated Voltage | 110V - 250V AC |
| Rated Current | Up to 4A |
| Material | Heat-resistant plastic or ceramic |
| Mounting Type | Screw or clip-on |
| Wire Connection Type | Screw terminals or solder points |
The E27 lamp holder typically has two connection points for wiring:
| Pin/Terminal | Description |
|---|---|
| Live (L) | Connects to the live wire of the circuit |
| Neutral (N) | Connects to the neutral wire of the circuit |
Note: Some models may include an additional grounding terminal for enhanced safety.
Preparation:
Wiring:
Mounting:
Bulb Installation:
Power On:
Below is an example of using an Arduino UNO and a relay module to control an E27 lamp holder:
/*
Example: Controlling an E27 Lamp Holder with Arduino UNO
This code toggles the lamp holder ON and OFF every 2 seconds using a relay module.
Ensure the relay module is properly connected to the lamp holder and power supply.
*/
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
digitalWrite(relayPin, LOW); // Start with the relay OFF
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn the lamp ON
delay(2000); // Wait for 2 seconds
digitalWrite(relayPin, LOW); // Turn the lamp OFF
delay(2000); // Wait for 2 seconds
}
Warning: Ensure proper isolation between the high-voltage lamp holder circuit and the low-voltage Arduino circuit. Use a relay module with optocoupler isolation for safety.
| Issue | Possible Cause | Solution |
|---|---|---|
| Bulb does not light up | Loose wiring or poor connections | Check and tighten all connections |
| Flickering light | Faulty bulb or unstable power supply | Replace the bulb or stabilize power |
| Overheating of lamp holder | Bulb wattage exceeds holder rating | Use a bulb within the rated wattage |
| Difficulty screwing in the bulb | Damaged or dirty threads | Clean threads or replace the holder |
| No power to the lamp holder | Faulty relay or power supply issue | Test and replace the relay or supply |
Can I use an E27 lamp holder with LED bulbs?
Is the E27 socket safe for outdoor use?
What is the maximum wattage supported by the E27 socket?
Can I connect the lamp holder directly to a microcontroller?
By following this documentation, users can safely and effectively utilize the Generic E27 Socket lamp holder in various applications.