

The EG800K-CN v2 is a high-performance DC-DC converter module manufactured by Arduino, with the part ID "UNO". This module is designed for efficient power conversion, offering adjustable output voltage and current capabilities. It is ideal for powering microcontrollers, sensors, and other low-power devices in a variety of electronic applications.








The EG800K-CN v2 is designed to provide reliable and efficient power conversion. Below are its key technical details:
| Parameter | Value |
|---|---|
| Input Voltage Range | 6V to 36V |
| Output Voltage Range | 1.25V to 32V (adjustable) |
| Maximum Output Current | 5A (with proper heat dissipation) |
| Output Power | Up to 75W |
| Efficiency | Up to 96% |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 60mm x 21mm x 15mm |
| Pin Name | Description |
|---|---|
| VIN+ | Positive input voltage terminal |
| VIN- | Negative input voltage terminal (ground) |
| VOUT+ | Positive output voltage terminal |
| VOUT- | Negative output voltage terminal (ground) |
| ADJ | Adjustable pin for setting output voltage |
The EG800K-CN v2 is straightforward to use in a circuit. Follow the steps below to integrate it into your project:
To power an Arduino UNO with the EG800K-CN v2:
If you are using the EG800K-CN v2 to power sensors connected to an Arduino UNO, here is a simple example:
// Example: Reading a sensor value and printing it to the Serial Monitor
const int sensorPin = A0; // Sensor connected to analog pin A0
int sensorValue = 0; // Variable to store the sensor reading
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
sensorValue = analogRead(sensorPin); // Read the sensor value
Serial.print("Sensor Value: "); // Print label to Serial Monitor
Serial.println(sensorValue); // Print the sensor value
delay(1000); // Wait for 1 second before next reading
}
No Output Voltage
Output Voltage is Incorrect
Module Overheats
Load Does Not Power On
Q1: Can the EG800K-CN v2 be used with a battery?
A1: Yes, it can be used with a battery as long as the input voltage is within the 6V to 36V range.
Q2: How do I limit the output current?
A2: Use the onboard current adjustment potentiometer (if available) to set the desired current limit.
Q3: Is the module protected against short circuits?
A3: The module includes basic protection features, but it is recommended to avoid short circuits to prevent damage.
Q4: Can I use this module to power a 3.3V device?
A4: Yes, adjust the output voltage to 3.3V using the potentiometer before connecting your device.