

The VDC Board (Manufacturer: Ardui, Part ID: 12345) is a circuit board designed to manage and distribute direct current (DC) voltage to various components in an electronic system. It ensures a stable power supply and efficient operation, making it an essential component in many electronic designs. The board is versatile and can be used in a wide range of applications, from powering microcontrollers to driving motors and sensors.








The VDC Board is designed to handle a variety of voltage and current requirements, making it suitable for both low-power and high-power applications.
| Parameter | Specification |
|---|---|
| Input Voltage Range | 5V to 24V DC |
| Output Voltage Options | 3.3V, 5V, 12V DC (selectable) |
| Maximum Output Current | 2A per output channel |
| Efficiency | Up to 90% |
| Operating Temperature | -20°C to 85°C |
| Dimensions | 50mm x 30mm x 10mm |
| Protection Features | Overcurrent, Overvoltage, Thermal Shutdown |
The VDC Board features a simple pinout for easy integration into your circuit.
| Pin Name | Description |
|---|---|
| VIN | Input voltage (5V to 24V DC) |
| GND | Ground connection |
| VOUT_3.3V | 3.3V regulated output |
| VOUT_5V | 5V regulated output |
| VOUT_12V | 12V regulated output |
| EN | Enable pin (active HIGH to enable outputs) |
| NC | No connection (reserved for future use) |
VIN pin.GND pin.VOUT_3.3V, VOUT_5V, or VOUT_12V).EN pin is available, ensure it is set to HIGH to enable the outputs.EN pin is not connected, the board may remain disabled. Connect it to a HIGH signal to activate the outputs.Below is an example of how to use the VDC Board to power an Arduino UNO and an LED.
VIN and GND pins of the VDC Board.VOUT_5V pin to the 5V pin of the Arduino UNO.GND pin of the VDC Board to the GND pin of the Arduino UNO.// Example code to blink an LED connected to an Arduino UNO
// Ensure the VDC Board is providing 5V to the Arduino UNO
const int ledPin = 13; // Pin where the LED is connected
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an 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
}
No Output Voltage:
EN pin is set to HIGH.Overheating:
Voltage Drop:
Board Not Powering On:
Q: Can I use the VDC Board with a battery?
A: Yes, the VDC Board can be used with a DC battery as long as the voltage is within the 5V to 24V range.
Q: Can I power multiple devices simultaneously?
A: Yes, you can power multiple devices as long as the total current does not exceed 2A per output channel.
Q: Is the board compatible with 24V industrial systems?
A: Yes, the board supports input voltages up to 24V, making it suitable for industrial applications.
Q: What happens if I exceed the current limit?
A: The board includes overcurrent protection, which will shut down the output to prevent damage. Reduce the load and restart the board.
This concludes the documentation for the Ardui VDC Board (Part ID: 12345). For further assistance, refer to the manufacturer's support resources.