

The M4-ATX-HV, manufactured by Mini-Box, is a compact, high-efficiency DC-DC power supply designed for mini-ITX and small form factor systems. It is engineered to deliver stable and reliable power output, even in demanding environments. With its wide input voltage range (6V to 34V), the M4-ATX-HV is particularly well-suited for automotive, embedded systems, and industrial applications. Its intelligent power management features make it an excellent choice for systems requiring low power consumption and high efficiency.








| Parameter | Value |
|---|---|
| Input Voltage Range | 6V to 34V DC |
| Output Voltage Rails | +12V, +5V, +3.3V, -12V |
| Maximum Power Output | 250W |
| Efficiency | Up to 95% |
| Operating Temperature Range | -40°C to +85°C |
| Dimensions | 160mm x 45mm x 25mm |
| Protection Features | Over-voltage, under-voltage, over-current, short-circuit |
The M4-ATX-HV features a standard ATX power connector and additional input/output pins for advanced functionality.
| Pin Number | Signal Name | Voltage Level | Description |
|---|---|---|---|
| 1 | +3.3V | +3.3V | Main 3.3V power rail |
| 2 | +5V | +5V | Main 5V power rail |
| 3 | +12V | +12V | Main 12V power rail |
| 4 | -12V | -12V | Negative 12V power rail |
| 5 | GND | 0V | Ground |
| 6 | PS_ON | Logic Signal | Power supply on/off control |
| 7 | 5VSB | +5V Standby | Standby power for low-power mode |
| Pin Number | Signal Name | Voltage Level | Description |
|---|---|---|---|
| 1 | VIN+ | 6V to 34V | Positive input voltage |
| 2 | VIN- | 0V | Ground/negative input voltage |
The M4-ATX-HV can be used to power an Arduino UNO and other peripherals in an embedded system. Below is an example of how to connect the power supply:
The M4-ATX-HV can be paired with a voltage sensor to monitor the input voltage. Below is an example Arduino sketch:
// Arduino sketch to monitor input voltage of the M4-ATX-HV
const int voltagePin = A0; // Analog pin connected to voltage sensor
const float voltageDividerRatio = 11.0; // Adjust based on your voltage divider
void setup() {
Serial.begin(9600); // Initialize serial communication
pinMode(voltagePin, INPUT); // Set voltage pin as input
}
void loop() {
int sensorValue = analogRead(voltagePin); // Read analog value
// Convert the analog value to voltage
float inputVoltage = (sensorValue * 5.0 / 1023.0) * voltageDividerRatio;
// Print the input voltage to the Serial Monitor
Serial.print("Input Voltage: ");
Serial.print(inputVoltage);
Serial.println(" V");
delay(1000); // Wait for 1 second before the next reading
}
Power Supply Does Not Turn On
Overheating
Output Voltage Instability
No Standby Power
Q: Can the M4-ATX-HV be used in a 24V automotive system?
A: Yes, the M4-ATX-HV supports input voltages up to 34V, making it compatible with 24V systems.
Q: Does the M4-ATX-HV require an external cooling fan?
A: In most cases, passive cooling is sufficient. However, for high-power applications, additional cooling may be necessary.
Q: Can I use the M4-ATX-HV to power multiple devices?
A: Yes, as long as the total power consumption does not exceed 250W and the load is distributed across the output rails.
Q: Is the M4-ATX-HV protected against short circuits?
A: Yes, the power supply includes short-circuit protection to safeguard connected devices.
This concludes the documentation for the Mini-Box M4-ATX-HV. For further assistance, refer to the manufacturer's user manual or contact Mini-Box support.