

An AC power connector is a device used to connect electrical appliances to an alternating current (AC) power supply, enabling the transfer of electrical energy. These connectors are essential components in a wide range of applications, from household appliances to industrial equipment. They ensure a secure and reliable connection to the power source while adhering to safety standards.








The pin configuration of an AC power connector depends on the type (e.g., Type A, Type B, Type C, etc.). Below is an example of a standard 3-pin AC power connector (Type B):
| Pin Name | Description | Notes |
|---|---|---|
| Live (L) | Carries the live AC voltage | Typically connected to the brown wire. |
| Neutral (N) | Completes the circuit back to the source | Typically connected to the blue wire. |
| Ground (G) | Provides a safety path for leakage current | Typically connected to the green/yellow wire. |
While the Arduino UNO typically uses DC power, you can use an AC-to-DC adapter with an AC power connector to supply power. Below is an example of how to connect an AC power connector to an adapter:
// Example Arduino code to blink an LED when powered via an AC-to-DC adapter
// Ensure the adapter is properly connected to the AC power connector
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output for the onboard 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
}
Loose Connections:
Overheating:
No Power Output:
Electric Shocks:
Can I use an AC power connector for DC applications?
What is the difference between 2-pin and 3-pin connectors?
How do I know if my connector is overloaded?
Is it safe to use an AC power connector outdoors?