

The Fitting Lampu (commonly referred to as a lamp holder) is a device designed to securely hold and connect a light bulb to an electrical circuit. Manufactured by Generic with the part ID E27 Socket, this component ensures the safe and reliable operation of light bulbs in various applications. It is compatible with standard E27 screw-type bulbs, making it a versatile and widely used component in residential, commercial, and industrial lighting systems.








The following table outlines the key technical details of the Fitting Lampu (E27 Socket):
| Parameter | Specification |
|---|---|
| Manufacturer | Generic |
| Part ID | E27 Socket |
| Bulb Compatibility | 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 |
| Dimensions | Varies (typically ~40mm diameter) |
| Operating Temperature | -20°C to 85°C |
The Fitting Lampu does not have traditional pins but instead features two electrical terminals for connection. The table below describes these terminals:
| Terminal | Description |
|---|---|
| Live (L) | Connects to the live wire of the AC circuit |
| Neutral (N) | Connects to the neutral wire of the AC circuit |
Preparation:
Wiring:
Mounting:
Testing:
While the Fitting Lampu is primarily an AC component, it can be controlled indirectly using an Arduino UNO and a relay module. Below is an example code snippet to control the Fitting Lampu via a relay:
// Example: Controlling a Fitting Lampu (E27 Socket) with Arduino UNO
// This code toggles the lamp on and off every 2 seconds using a relay module.
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off initially
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn the relay (and lamp) on
delay(2000); // Wait for 2 seconds
digitalWrite(relayPin, LOW); // Turn the relay (and lamp) off
delay(2000); // Wait for 2 seconds
}
Note: Ensure the relay module is rated for the voltage and current of the Fitting Lampu. The Arduino controls the relay, which in turn switches the AC power to the lamp.
Bulb Does Not Light Up:
Overheating:
Flickering Light:
Socket Damage:
By following this documentation, users can safely and effectively utilize the Fitting Lampu (E27 Socket) in their lighting projects and applications.