

The 20A Buck 300W CC CV by Sene (Manufacturer Part ID: 300w 20A cc cv) is a high-performance DC-DC buck converter designed for efficient voltage regulation. It supports both constant current (CC) and constant voltage (CV) modes, making it suitable for a wide range of applications. With a maximum output current of 20A and a power rating of 300W, this converter is ideal for powering high-current devices, battery charging, and LED drivers.








| Parameter | Value |
|---|---|
| Input Voltage Range | 8V to 60V |
| Output Voltage Range | 1.25V to 36V |
| Maximum Output Current | 20A |
| Maximum Output Power | 300W |
| Efficiency | Up to 95% |
| Operating Modes | Constant Voltage (CV), Constant Current (CC) |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 60mm x 52mm x 22mm |
| Pin Name | Description |
|---|---|
| VIN+ | Positive input voltage terminal (connect to the DC power source) |
| VIN- | Negative input voltage terminal (connect to the DC power source ground) |
| VOUT+ | Positive output voltage terminal (connect to the load) |
| VOUT- | Negative output voltage terminal (connect to the load ground) |
| CC ADJ | Potentiometer for adjusting the constant current limit |
| CV ADJ | Potentiometer for adjusting the constant voltage output |
Connect the Input Voltage:
Connect the Load:
Adjust the Output Voltage:
Set the Current Limit:
Power On:
The 20A Buck 300W CC CV module can be used to power an Arduino UNO. Below is an example of how to connect and use the module:
Here is a simple Arduino sketch to monitor the voltage and current using an analog sensor:
// Example code to monitor voltage and current using Arduino UNO
const int voltagePin = A0; // Analog pin for voltage measurement
const int currentPin = A1; // Analog pin for current measurement
void setup() {
Serial.begin(9600); // Initialize serial communication
pinMode(voltagePin, INPUT);
pinMode(currentPin, INPUT);
}
void loop() {
// Read the analog values
int voltageReading = analogRead(voltagePin);
int currentReading = analogRead(currentPin);
// Convert readings to actual voltage and current
float voltage = (voltageReading / 1023.0) * 5.0; // Assuming a 5V reference
float current = (currentReading / 1023.0) * 20.0; // Assuming a 20A sensor
// Print the values to the Serial Monitor
Serial.print("Voltage: ");
Serial.print(voltage);
Serial.println(" V");
Serial.print("Current: ");
Serial.print(current);
Serial.println(" A");
delay(1000); // Wait for 1 second before the next reading
}
| Issue | Possible Cause | Solution |
|---|---|---|
| No output voltage | Incorrect wiring or loose connections | Verify all connections and polarity. |
| Output voltage not adjustable | Faulty potentiometer or incorrect setup | Check the CV ADJ potentiometer. |
| Module overheating | High load or insufficient cooling | Add a heatsink or active cooling. |
| Load not receiving enough current | Current limit set too low | Adjust the CC ADJ potentiometer. |
Can I use this module to charge batteries?
What happens if I exceed the input voltage range?
Can I use this module with an AC power source?
How do I know if the module is in CC mode?
This concludes the documentation for the 20A Buck 300W CC CV module by Sene.