

The 400V Step Up Module is an electronic device designed to increase a lower input voltage to a stable 400V output. This module is commonly used in applications requiring high voltage for efficient power transmission, powering high-voltage equipment, or driving devices such as Nixie tubes, Geiger counters, or other specialized circuits. Its compact design and high efficiency make it a popular choice for hobbyists, engineers, and professionals working with high-voltage systems.








Below are the key technical details of the 400V Step Up Module:
| Parameter | Value |
|---|---|
| Input Voltage Range | 3V to 12V DC |
| Output Voltage | 400V DC (fixed) |
| Output Current | 1mA to 2mA (depending on load) |
| Efficiency | Up to 85% |
| Dimensions | Typically 30mm x 20mm x 10mm |
| Operating Temperature | -20°C to +60°C |
| Protection Features | Overcurrent and short-circuit protection |
The module typically has four pins or solder pads for connections:
| Pin Name | Description |
|---|---|
| VIN+ | Positive input voltage (3V to 12V DC) |
| VIN- | Negative input voltage (ground) |
| VOUT+ | Positive high-voltage output (400V DC) |
| VOUT- | Negative high-voltage output (ground) |
VIN+ and VIN- pins. Ensure the input voltage is within the specified range to avoid damaging the module.VOUT+ and VOUT- pins. Ensure the load is designed to handle 400V DC.// Example code to control a Nixie tube using an Arduino UNO
// Ensure the 400V Step Up Module is properly connected to the Nixie tube
// and the Arduino controls the tube via a transistor or driver circuit.
const int nixieControlPin = 7; // Pin connected to the Nixie tube driver circuit
void setup() {
pinMode(nixieControlPin, OUTPUT); // Set the control pin as an output
}
void loop() {
digitalWrite(nixieControlPin, HIGH); // Turn on the Nixie tube
delay(1000); // Keep it on for 1 second
digitalWrite(nixieControlPin, LOW); // Turn off the Nixie tube
delay(1000); // Keep it off for 1 second
}
Note: The Arduino does not directly control the 400V output. Instead, it switches the Nixie tube on/off via a transistor or driver circuit. Ensure proper isolation between the Arduino and high-voltage components.
No Output Voltage:
Output Voltage Too Low:
Module Overheating:
Arcing or Sparks:
Q: Can I adjust the output voltage?
A: No, the output voltage is fixed at 400V DC and cannot be adjusted.
Q: Is the module safe for beginners?
A: While it can be used by beginners, caution is required due to the high voltage. Always follow safety guidelines.
Q: Can I use this module with an Arduino?
A: Yes, but the Arduino does not directly interact with the high-voltage output. Use a driver circuit to control high-voltage components like Nixie tubes.
Q: What happens if I exceed the input voltage range?
A: Exceeding the input voltage range may damage the module permanently. Always use a regulated power supply.
By following this documentation, you can safely and effectively use the 400V Step Up Module in your high-voltage projects.