Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use Fitting Lampu: Examples, Pinouts, and Specs

Image of Fitting Lampu
Cirkit Designer LogoDesign with Fitting Lampu in Cirkit Designer

Introduction

A Fitting Lampu, also known as a lamp holder or bulb socket, is a device designed to securely hold and connect a light bulb to an electrical circuit. It ensures the safe operation of the bulb by providing both mechanical support and electrical connectivity. The E27 Socket, manufactured by Generic, is one of the most commonly used lamp holders, compatible with standard E27 screw-type light bulbs.

Explore Projects Built with Fitting Lampu

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
USB-Powered Light Sensor with Pilot Lamp Indicator
Image of Eierfärbermaschine: A project utilizing Fitting Lampu in a practical application
This circuit powers a blue pilot lamp using a USB power source. The positive terminal of the USB power is connected to one pin of the pilot lamp, while the negative terminal is connected to the other pin, allowing the lamp to illuminate when the USB power is supplied.
Cirkit Designer LogoOpen Project in Cirkit Designer
Flush Switch Controlled Lamp Circuit with AC Power Supply and MCB Protection
Image of LAMP CONTROLE WITH MCB: A project utilizing Fitting Lampu in a practical application
This circuit is designed to control a lamp using a flush switch and is protected by two MCBs (Miniature Circuit Breakers). The AC supply is connected to the input of the first MCB, whose output is connected to the flush switch. The flush switch then controls the power to the lamp, with the second MCB placed in the neutral line for additional safety.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino Mega 2560 Controlled AC Dimmer Lamp with Voltage Monitoring
Image of  karakterisasi lampu: A project utilizing Fitting Lampu in a practical application
This circuit is designed to control the brightness of an AC bulb using an Arduino Mega 2560 and an AC Dimmer Lamp Module. The Arduino provides power and control signals to the dimmer module, which in turn adjusts the AC voltage supplied to the bulb. A voltmeter is included to monitor the voltage across the bulb.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino UNO-Based Automatic Light Control with PIR Sensor and Relay
Image of teragaurd: A project utilizing Fitting Lampu in a practical application
This circuit is an automatic lighting system that uses a PIR motion sensor to detect movement and control an AC bulb via a 5V relay, managed by an Arduino UNO. The system also includes a GPS module, a GSM module, and a current sensor for additional functionalities, all powered by a solar panel and a 12V battery setup.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with Fitting Lampu

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of Eierfärbermaschine: A project utilizing Fitting Lampu in a practical application
USB-Powered Light Sensor with Pilot Lamp Indicator
This circuit powers a blue pilot lamp using a USB power source. The positive terminal of the USB power is connected to one pin of the pilot lamp, while the negative terminal is connected to the other pin, allowing the lamp to illuminate when the USB power is supplied.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of LAMP CONTROLE WITH MCB: A project utilizing Fitting Lampu in a practical application
Flush Switch Controlled Lamp Circuit with AC Power Supply and MCB Protection
This circuit is designed to control a lamp using a flush switch and is protected by two MCBs (Miniature Circuit Breakers). The AC supply is connected to the input of the first MCB, whose output is connected to the flush switch. The flush switch then controls the power to the lamp, with the second MCB placed in the neutral line for additional safety.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of  karakterisasi lampu: A project utilizing Fitting Lampu in a practical application
Arduino Mega 2560 Controlled AC Dimmer Lamp with Voltage Monitoring
This circuit is designed to control the brightness of an AC bulb using an Arduino Mega 2560 and an AC Dimmer Lamp Module. The Arduino provides power and control signals to the dimmer module, which in turn adjusts the AC voltage supplied to the bulb. A voltmeter is included to monitor the voltage across the bulb.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of teragaurd: A project utilizing Fitting Lampu in a practical application
Arduino UNO-Based Automatic Light Control with PIR Sensor and Relay
This circuit is an automatic lighting system that uses a PIR motion sensor to detect movement and control an AC bulb via a 5V relay, managed by an Arduino UNO. The system also includes a GPS module, a GSM module, and a current sensor for additional functionalities, all powered by a solar panel and a 12V battery setup.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • Residential and commercial lighting fixtures
  • Table lamps, ceiling lights, and wall-mounted fixtures
  • DIY lighting projects
  • Temporary or portable lighting setups

Technical Specifications

Key Technical Details

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
Dimensions Varies (standard E27 size)

Pin Configuration and Descriptions

The E27 socket typically has two electrical terminals for connection:

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 E27 sockets may include a grounding terminal for enhanced safety, depending on the design.

Usage Instructions

How to Use the Component in a Circuit

  1. Preparation: Ensure the power supply is turned off before handling the E27 socket.
  2. Wiring:
    • Connect the Live (L) terminal of the socket to the live wire of the power source.
    • Connect the Neutral (N) terminal to the neutral wire of the power source.
    • If the socket includes a grounding terminal, connect it to the ground wire.
  3. Bulb Installation: Screw an E27-compatible bulb into the socket until it is securely in place.
  4. Mounting: Attach the socket to the desired surface using screws or clips, as per the design.
  5. Power On: Once all connections are secure, turn on the power supply to test the setup.

Important Considerations and Best Practices

  • Voltage and Current Ratings: Ensure the bulb and socket are compatible with the voltage and current of your power source.
  • Heat Management: Use sockets made of heat-resistant materials for high-wattage bulbs to prevent overheating.
  • Secure Connections: Double-check all wiring connections to avoid loose contacts, which can cause arcing or overheating.
  • Safety: Always turn off the power supply before installing or replacing bulbs to avoid electric shock.

Example: Connecting to an Arduino UNO

While the E27 socket is not directly compatible with low-voltage microcontrollers like the Arduino UNO, it can be controlled indirectly using a relay module. Below is an example of how to control an E27 socket with an Arduino UNO and a relay:

/*
  Example: Controlling an E27 Socket with Arduino and Relay
  This code turns an E27 bulb on and off using a relay module.
  Ensure the relay is rated for the voltage and current of the bulb.
*/

const int relayPin = 7; // Pin connected to the relay module

void setup() {
  pinMode(relayPin, OUTPUT); // Set relay pin as output
  digitalWrite(relayPin, LOW); // Ensure relay is off at startup
}

void loop() {
  digitalWrite(relayPin, HIGH); // Turn on the bulb
  delay(5000); // Keep the bulb on for 5 seconds
  digitalWrite(relayPin, LOW); // Turn off the bulb
  delay(5000); // Keep the bulb off for 5 seconds
}

Note: The relay module should be connected to the Arduino and the E27 socket as per the relay's wiring diagram. Always ensure proper insulation and safety precautions when working with high-voltage components.

Troubleshooting and FAQs

Common Issues and Solutions

Issue Possible Cause Solution
Bulb does not light up Loose wiring or poor connections Check and secure all connections
Bulb flickers Voltage fluctuations or loose contacts Stabilize power supply; tighten wires
Socket overheats Bulb wattage exceeds socket rating Use a bulb within the rated wattage
Relay-controlled bulb not working Incorrect relay wiring or code issues Verify wiring and review Arduino code

FAQs

  1. Can I use an E27 socket outdoors?

    • Yes, but ensure it is installed in a weatherproof enclosure to protect it from moisture and dust.
  2. What is the maximum wattage supported by the E27 socket?

    • The maximum wattage depends on the material and design of the socket. Check the manufacturer's specifications, but most E27 sockets support up to 60W or higher.
  3. Can I use an E27 socket with LED bulbs?

    • Yes, as long as the LED bulb has an E27 base and operates within the socket's voltage range.
  4. Is it safe to use the E27 socket without grounding?

    • While grounding is not mandatory for all E27 sockets, it is recommended for enhanced safety, especially in high-power applications.

By following this documentation, users can safely and effectively utilize the Generic E27 Socket for various lighting applications.