

The LR30-900M22SP, manufactured by DX-SMART (Part ID: DX-LR30), is a high-performance linear voltage regulator designed for efficient and reliable voltage regulation in electronic circuits. It provides a stable output voltage with low dropout and minimal noise, making it ideal for sensitive applications requiring precise voltage control.








The following table outlines the key technical specifications of the LR30-900M22SP:
| Parameter | Value |
|---|---|
| Input Voltage Range | 2.5V to 22V |
| Output Voltage Range | 0.9V to 20V (adjustable) |
| Maximum Output Current | 900mA |
| Dropout Voltage | 0.2V (typical at 500mA load) |
| Quiescent Current | 50µA (typical) |
| Output Voltage Accuracy | ±1% |
| Operating Temperature Range | -40°C to +125°C |
| Package Type | SOT-223 |
The LR30-900M22SP is available in a SOT-223 package with the following pinout:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | VIN | Input voltage pin. Connect to the unregulated DC supply. |
| 2 | GND | Ground pin. Connect to the circuit ground. |
| 3 | VOUT | Regulated output voltage pin. Connect to the load. |
| Tab | GND | Thermal pad. Connect to ground for heat dissipation. |
The LR30-900M22SP can be used to power an Arduino UNO by regulating a higher input voltage (e.g., 12V) down to 5V. Below is an example circuit and Arduino code:
// Example code to blink an LED using Arduino UNO powered by LR30-900M22SP
// The LR30-900M22SP regulates 12V input to 5V for the Arduino UNO.
const int ledPin = 13; // Built-in LED pin on Arduino UNO
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
Excessive Heat
Output Voltage Instability
Output Voltage Too Low
Q1: Can the LR30-900M22SP be used with a 3.3V system?
A1: Yes, the LR30-900M22SP can regulate input voltages down to 3.3V, provided the input voltage is at least 0.2V higher than the output.
Q2: What type of capacitors should I use?
A2: Use low-ESR ceramic or tantalum capacitors for both input and output to ensure stable operation.
Q3: Is the LR30-900M22SP protected against short circuits?
A3: Yes, the LR30-900M22SP includes built-in short-circuit protection to safeguard the device and connected components.
Q4: Can I use the LR30-900M22SP in battery-powered devices?
A4: Absolutely. Its low quiescent current (50µA typical) makes it suitable for battery-powered applications.