

The Greluma ZL963LUM is a high-efficiency DC-DC step-down converter designed to reduce an input voltage range of 9V to 40V to a stable output of 6V with a maximum current of 3A. This component is ideal for powering devices that require a lower voltage, such as microcontrollers, sensors, and small electronic devices. Its compact design and robust performance make it suitable for a wide range of applications, including automotive electronics, industrial equipment, and DIY projects.








The following table outlines the key technical details of the Greluma ZL963LUM step-down converter:
| Parameter | Value | 
|---|---|
| Input Voltage Range | 9V to 40V | 
| Output Voltage | 6V | 
| Maximum Output Current | 3A | 
| Efficiency | Up to 95% | 
| Operating Temperature | -40°C to +85°C | 
| Dimensions | 45mm x 25mm x 15mm | 
| Weight | 20g | 
The ZL963LUM has four pins for input and output connections. The table below describes each pin:
| Pin Name | Description | 
|---|---|
| VIN+ | Positive input voltage terminal (9V to 40V). | 
| VIN- | Negative input voltage terminal (ground). | 
| VOUT+ | Positive output voltage terminal (6V). | 
| VOUT- | Negative output voltage terminal (ground). | 
The ZL963LUM can be used to power an Arduino UNO by providing a stable 6V supply. Below is an example circuit and Arduino code to blink an LED:
// Simple LED blink example for Arduino UNO
// This code assumes an LED is connected to pin 13 with a 220-ohm resistor.
void setup() {
  pinMode(13, OUTPUT); // Set pin 13 as an output pin
}
void loop() {
  digitalWrite(13, HIGH); // Turn the LED on
  delay(1000);            // Wait for 1 second
  digitalWrite(13, LOW);  // Turn the LED off
  delay(1000);            // Wait for 1 second
}
By following this documentation, users can effectively integrate the Greluma ZL963LUM step-down converter into their projects and troubleshoot common issues with ease.