

A plug is a device designed to connect an electrical appliance to a power source, enabling the flow of electricity into the appliance. It is a critical component in electrical systems, ensuring a safe and reliable connection between devices and power outlets. Plugs come in various types and configurations to accommodate different voltage levels, current ratings, and regional standards.








The technical specifications of a plug vary depending on its type and intended application. Below are general specifications for a standard household plug:
| Parameter | Value/Description |
|---|---|
| Voltage Rating | 110V - 240V AC (varies by region) |
| Current Rating | 6A - 16A (depending on plug type) |
| Frequency | 50Hz or 60Hz |
| Material | Thermoplastic or thermoset for insulation |
| Pin Material | Brass or nickel-plated brass |
| Safety Features | Insulated pins, grounding pin, shutters |
Below is an example of a 3-pin plug configuration commonly used in many regions:
| Pin Name | Description |
|---|---|
| Live (L) | Carries the current from the power source to the appliance. |
| Neutral (N) | Completes the circuit by returning current to the power source. |
| Ground (G) | Provides a safety path for fault currents to prevent electric shock. |
If you are powering an Arduino UNO using a plug and a power adapter, follow these steps:
// Example Arduino code to blink an LED
// This assumes the Arduino is powered via a plug and adapter
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output for the LED
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(13, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
Q: Can I use a 110V plug in a 220V outlet?
A: No, using a plug rated for 110V in a 220V outlet can damage the appliance and pose a safety hazard. Always match the plug's voltage rating to the power source.
Q: How do I know if my plug is grounded?
A: A grounded plug typically has three pins, with the third pin (ground) being longer or thicker than the others.
Q: Can I replace a damaged plug myself?
A: Yes, but only if you are familiar with electrical wiring. Ensure the replacement plug matches the original specifications and follow proper wiring practices.
Q: Why does my plug have shutters on the pinholes?
A: Shutters are a safety feature to prevent accidental contact with live parts, especially in regions with Type G plugs.