

The 4-Pin Peripheral Power Connector, manufactured by Molex, is a widely used power supply unit designed to provide electrical power to computer peripherals. This connector ensures efficient and reliable operation of devices such as hard drives, optical drives, and other internal components in desktop computers. Its robust design and standardized pin configuration make it a staple in legacy and modern systems requiring stable power delivery.








The 4-pin peripheral power connector has a standardized pinout, as detailed below:
| Pin Number | Wire Color | Voltage | Description |
|---|---|---|---|
| 1 | Yellow | +12V | Supplies +12V power |
| 2 | Black | Ground | Ground connection |
| 3 | Black | Ground | Ground connection |
| 4 | Red | +5V | Supplies +5V power |
While the 4-pin peripheral power connector is not directly compatible with Arduino boards, it can be used to power external components in Arduino projects. For example, you can use a Molex-to-barrel jack adapter to power a motor driver or other high-power peripherals.
// Example Arduino code to control a motor powered by a Molex 4-pin connector
// Ensure the motor driver is connected to the Molex +12V and GND lines
const int motorPin = 9; // PWM pin connected to motor driver input
void setup() {
pinMode(motorPin, OUTPUT); // Set motor pin as output
}
void loop() {
analogWrite(motorPin, 128); // Run motor at 50% speed
delay(5000); // Keep motor running for 5 seconds
analogWrite(motorPin, 0); // Stop motor
delay(2000); // Wait for 2 seconds before restarting
}
Note: Ensure proper voltage regulation when using the 4-pin connector to power Arduino-related components.
Q: Can I use the 4-pin connector to power modern SATA devices?
A: Yes, with a Molex-to-SATA power adapter, you can connect SATA devices to the 4-pin connector.
Q: What happens if I reverse the connector?
A: The 4-pin connector is keyed to prevent incorrect insertion. Forcing it in the wrong orientation may damage the connector or device.
Q: Can I split the 4-pin connector to power multiple devices?
A: Yes, but ensure the total current draw does not exceed the PSU's or connector's rating.
By following this documentation, users can effectively utilize the Molex 4-pin Peripheral Power Connector in their systems and projects.