Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use 400V Step Up Module: Examples, Pinouts, and Specs

Image of 400V Step Up Module
Cirkit Designer LogoDesign with 400V Step Up Module in Cirkit Designer

Introduction

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.

Explore Projects Built with 400V Step Up Module

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Battery-Powered High Voltage Generator with Copper Coil
Image of Ionic Thruster Mark_1: A project utilizing 400V Step Up Module in a practical application
This circuit consists of a Li-ion battery connected to a step-up power module through a rocker switch, which boosts the voltage to power a ring of copper gauge with an aluminum frame. The rocker switch allows the user to control the power flow from the battery to the step-up module, which then supplies the boosted voltage to the copper ring.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered UPS with Step-Down Buck Converter and BMS
Image of Mini ups: A project utilizing 400V Step Up Module in a practical application
This circuit is a power management system that steps down a 240V AC input to a lower DC voltage using a buck converter, which then powers a 40W UPS. The UPS is controlled by a rocker switch and is backed up by a battery management system (BMS) connected to three 3.7V batteries in series, ensuring continuous power supply.
Cirkit Designer LogoOpen Project in Cirkit Designer
Voltage Regulation System with MT3608 Boost and LM2596 Buck Converters
Image of solar system router ups: A project utilizing 400V Step Up Module in a practical application
This circuit consists of two MT3608 boost converters and an LM2596 step-down module, each connected to separate 12V power supplies. The MT3608 modules are configured to step up the voltage from their respective power supplies, while the LM2596 module steps down the voltage from a 12V battery. Diodes are used to ensure correct current flow direction, potentially for protection or isolation between different parts of the circuit.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered Adjustable Voltage Regulator with Li-ion 18650 Batteries and BMS
Image of mini ups: A project utilizing 400V Step Up Module in a practical application
This circuit is a power management system that uses four Li-ion 18650 batteries connected to a 2S 30A BMS for battery management and protection. The system includes step-up and step-down voltage regulators to provide adjustable output voltages, controlled by a rocker switch, and multiple DC jacks for power input and output.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with 400V Step Up Module

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of Ionic Thruster Mark_1: A project utilizing 400V Step Up Module in a practical application
Battery-Powered High Voltage Generator with Copper Coil
This circuit consists of a Li-ion battery connected to a step-up power module through a rocker switch, which boosts the voltage to power a ring of copper gauge with an aluminum frame. The rocker switch allows the user to control the power flow from the battery to the step-up module, which then supplies the boosted voltage to the copper ring.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Mini ups: A project utilizing 400V Step Up Module in a practical application
Battery-Powered UPS with Step-Down Buck Converter and BMS
This circuit is a power management system that steps down a 240V AC input to a lower DC voltage using a buck converter, which then powers a 40W UPS. The UPS is controlled by a rocker switch and is backed up by a battery management system (BMS) connected to three 3.7V batteries in series, ensuring continuous power supply.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of solar system router ups: A project utilizing 400V Step Up Module in a practical application
Voltage Regulation System with MT3608 Boost and LM2596 Buck Converters
This circuit consists of two MT3608 boost converters and an LM2596 step-down module, each connected to separate 12V power supplies. The MT3608 modules are configured to step up the voltage from their respective power supplies, while the LM2596 module steps down the voltage from a 12V battery. Diodes are used to ensure correct current flow direction, potentially for protection or isolation between different parts of the circuit.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of mini ups: A project utilizing 400V Step Up Module in a practical application
Battery-Powered Adjustable Voltage Regulator with Li-ion 18650 Batteries and BMS
This circuit is a power management system that uses four Li-ion 18650 batteries connected to a 2S 30A BMS for battery management and protection. The system includes step-up and step-down voltage regulators to provide adjustable output voltages, controlled by a rocker switch, and multiple DC jacks for power input and output.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications

  • Powering Nixie tube displays
  • Driving Geiger counters
  • High-voltage testing equipment
  • DIY electronics projects requiring a 400V power source

Technical Specifications

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

Pin Configuration

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)

Usage Instructions

How to Use the 400V Step Up Module in a Circuit

  1. Power Supply: Connect a DC power source (3V to 12V) to the VIN and GND pins. Ensure the input voltage is within the specified range to avoid damaging the module.
  2. Load Connection: Connect the device or circuit requiring 400V to the VOUT and GND pins. Ensure the load does not exceed the module's maximum output current (1mA to 2mA).
  3. Safety Precautions: Since the module generates high voltage, handle it with care. Avoid touching the output terminals while the module is powered.

Important Considerations

  • Heat Dissipation: The module may heat up during operation. Ensure proper ventilation or use a heatsink if necessary.
  • Input Voltage: Do not exceed the maximum input voltage of 12V, as this can damage the module.
  • Load Resistance: Ensure the connected load has sufficient resistance to limit the output current within the module's specifications.
  • Isolation: Avoid direct contact with the high-voltage output to prevent electric shock.

Example: Using the 400V Step Up Module with an Arduino UNO

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.

Troubleshooting and FAQs

Common Issues and Solutions

  1. No Output Voltage

    • Cause: Insufficient input voltage or loose connections.
    • Solution: Verify that the input voltage is within the 3V to 12V range and check all connections.
  2. Overheating

    • Cause: Excessive load or poor ventilation.
    • Solution: Reduce the load current or improve ventilation around the module.
  3. Output Voltage Fluctuations

    • Cause: Unstable input voltage or insufficient input power.
    • Solution: Use a stable DC power source and ensure the input power supply can provide sufficient current.
  4. Electric Shock

    • Cause: Accidental contact with high-voltage output terminals.
    • Solution: Always handle the module with care and avoid touching the output terminals.

FAQs

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.