

An AC power connector is a device used to connect electrical equipment 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 machinery. They ensure a safe and reliable connection between the power source and the equipment, often incorporating features to prevent accidental disconnection or electrical hazards.








The pin configuration of an AC power connector depends on the type and standard. Below is an example of a common Type B connector (used in North America):
| Pin Name | Description | Notes |
|---|---|---|
| Hot (Live) | Carries the live AC voltage | Typically connected to the black wire. |
| Neutral | Returns current to the power source | Typically connected to the white wire. |
| Ground | Provides a safety path to ground | Typically connected to the green wire. |
For other connector types, refer to the specific regional or application standards.
While the Arduino UNO operates on DC power, you can use an AC power connector with a power adapter to supply the required DC voltage. Below is an example of how to use an AC power connector with a 12V DC adapter:
// Example Arduino code to blink an LED
// Ensure the Arduino is powered via a DC adapter connected to an AC power source.
/*
This code blinks an LED connected to pin 13 of the Arduino UNO.
The Arduino is powered using a 12V DC adapter connected to an AC power source.
*/
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output pin
}
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 Delivery:
Sparking or Arcing:
By following this documentation, you can safely and effectively use an AC power connector in your projects and applications.