

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 power supply applications where high voltage is required, such as in Nixie tube displays, Geiger counters, or other high-voltage circuits. Its compact design and efficiency make it a popular choice for hobbyists and professionals working with high-voltage electronics.








The following table outlines the key technical details of the 400V Step Up Module:
| Parameter | Value |
|---|---|
| Input Voltage Range | 3V to 12V |
| Output Voltage | 400V (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 |
The module typically has four pins or solder pads for connections. The table below describes each pin:
| Pin Name | Description |
|---|---|
| VIN | Positive input voltage (3V to 12V) |
| GND | Ground connection for input and output |
| VOUT | Positive high-voltage output (400V) |
| GND | Ground connection for output (shared with input GND) |
VIN and GND pins. Ensure the input voltage is within the specified range to avoid damaging the module.VOUT and GND pins. Ensure the load does not exceed the module's maximum output current (1mA to 2mA).The 400V Step Up Module can be used in conjunction with an Arduino UNO to power a Nixie tube display. Below is an example of how to control the module's input voltage using a PWM signal from the Arduino:
// Example code to control the 400V Step Up Module with Arduino UNO
// This code generates a PWM signal to adjust the input voltage to the module
const int pwmPin = 9; // PWM pin connected to the module's VIN pin
void setup() {
pinMode(pwmPin, OUTPUT); // Set the PWM pin as an output
}
void loop() {
// Generate a PWM signal with 50% duty cycle
analogWrite(pwmPin, 128); // 128 corresponds to 50% duty cycle (0-255 scale)
// Delay for stability
delay(1000); // 1-second delay
}
Note: The above code assumes the module's input voltage is controlled via a transistor or MOSFET circuit connected to the Arduino's PWM pin. Directly connecting the Arduino to the module's VIN pin is not recommended due to current limitations.
No Output Voltage
Overheating
Output Voltage Fluctuations
Electric Shock
Q: Can I adjust the output voltage of the module?
A: No, the output voltage is fixed at 400V and cannot be adjusted.
Q: What is the maximum load I can connect to the module?
A: The module can supply a maximum current of 1mA to 2mA, depending on the input voltage and load resistance.
Q: Can I use this module with a battery?
A: Yes, the module can be powered by a battery, provided the battery voltage is within the 3V to 12V range.
Q: Is the module safe to use?
A: The module is safe if used correctly. However, due to the high output voltage, proper precautions must be taken to avoid electric shock.