

The ATX24 Pin Power Supply Connector (Manufacturer: SparkFun, Part ID: PRT-09498) is a standard connector used to deliver power from a computer's power supply unit (PSU) to the motherboard. This connector features 24 pins, providing multiple voltage levels and ground connections to support the operation of modern desktop computers. It is an essential component in ATX-compliant systems, ensuring reliable power distribution.








The ATX24 Pin Power Supply Connector is designed to meet the ATX standard for power delivery. Below are the key technical details:
The ATX24 Pin Power Supply Connector has the following pinout:
| Pin Number | Signal Name | Description | Voltage |
|---|---|---|---|
| 1 | +3.3V | Positive 3.3V power rail | +3.3V |
| 2 | +3.3V | Positive 3.3V power rail | +3.3V |
| 3 | Ground | Ground connection | 0V |
| 4 | +5V | Positive 5V power rail | +5V |
| 5 | Ground | Ground connection | 0V |
| 6 | +5V | Positive 5V power rail | +5V |
| 7 | Ground | Ground connection | 0V |
| 8 | Power Good | PSU status signal | +5V logic |
| 9 | +5V Standby | Standby power for low-power mode | +5V |
| 10 | +12V | Positive 12V power rail | +12V |
| 11 | +12V | Positive 12V power rail | +12V |
| 12 | +3.3V | Positive 3.3V power rail | +3.3V |
| 13 | +3.3V | Positive 3.3V power rail | +3.3V |
| 14 | -12V | Negative 12V power rail | -12V |
| 15 | Ground | Ground connection | 0V |
| 16 | PS_ON | Power supply on/off control | Active Low |
| 17 | Ground | Ground connection | 0V |
| 18 | Ground | Ground connection | 0V |
| 19 | Ground | Ground connection | 0V |
| 20 | No Connection | Reserved | N/A |
| 21 | +5V | Positive 5V power rail | +5V |
| 22 | +5V | Positive 5V power rail | +5V |
| 23 | +5V | Positive 5V power rail | +5V |
| 24 | Ground | Ground connection | 0V |
Connecting to a PSU:
Testing Power Rails:
Prototyping:
The ATX24 Pin Power Supply Connector can be used to power an Arduino UNO via the +5V rail. Below is an example of how to use it:
// Example Arduino code to blink an LED using power from the ATX24 connector
// Ensure the ATX PSU is properly powered on and providing +5V to the Arduino.
const int ledPin = 13; // Built-in LED pin on Arduino UNO
void setup() {
pinMode(ledPin, OUTPUT); // Set LED pin as output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
PSU Does Not Power On:
Incorrect Voltage Levels:
Overheating or Shutdown:
Loose Connection:
By following this documentation, users can effectively utilize the SparkFun ATX24 Pin Power Supply Connector (PRT-09498) in their projects and troubleshoot common issues with ease.