

The MP1495 is a high-efficiency step-down voltage regulator manufactured by HiLetGo. It is designed to convert a higher input voltage to a lower, regulated output voltage. This component integrates a power switch and supports adjustable output voltage, making it ideal for applications requiring compact, efficient, and reliable power conversion.








The MP1495 is a versatile component with the following key technical specifications:
| Parameter | Value | 
|---|---|
| Input Voltage Range | 4.5V to 40V | 
| Output Voltage Range | Adjustable (0.8V to 36V) | 
| Output Current | Up to 3A | 
| Switching Frequency | 500kHz | 
| Efficiency | Up to 90% | 
| Operating Temperature | -40°C to +125°C | 
| Package Type | SOP-8 | 
The MP1495 comes in an SOP-8 package with the following pinout:
| Pin Number | Pin Name | Description | 
|---|---|---|
| 1 | VIN | Input voltage pin. Connect to the input power source (4.5V to 40V). | 
| 2 | SW | Switching node. Connect to the inductor and diode. | 
| 3 | GND | Ground pin. Connect to the system ground. | 
| 4 | FB | Feedback pin. Connect to a resistor divider to set the output voltage. | 
| 5 | EN | Enable pin. Drive high to enable the regulator, or low to disable it. | 
| 6 | COMP | Compensation pin. Connect a capacitor to stabilize the control loop. | 
| 7 | BST | Bootstrap pin. Connect a capacitor between BST and SW for high-side drive. | 
| 8 | NC | No connection. Leave this pin unconnected. | 
The MP1495 can be used to power an Arduino UNO by stepping down a 12V input to 5V. Below is an example circuit and Arduino code to demonstrate its use:
// Example code to blink an LED using Arduino UNO powered by MP1495
// Ensure the MP1495 output is set to 5V before connecting to the Arduino
const int ledPin = 13; // Built-in LED pin on Arduino UNO
void setup() {
  pinMode(ledPin, OUTPUT); // Set LED pin as 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
High Output Ripple
Q: Can the MP1495 be used with a 24V input?
A: Yes, the MP1495 supports input voltages up to 40V, so 24V is within the acceptable range.
Q: How do I calculate the resistor values for a 3.3V output?
A: Use the formula ( V_{OUT} = 0.8V \times (1 + R1/R2) ). For example, if R2 = 10kΩ, set R1 = 31.25kΩ to achieve 3.3V.
Q: What happens if the EN pin is left floating?
A: The EN pin should not be left floating. It must be pulled high to enable the regulator or low to disable it.
Q: Can the MP1495 power a Raspberry Pi?
A: Yes, the MP1495 can step down a higher voltage (e.g., 12V) to 5V to power a Raspberry Pi, provided the current requirement does not exceed 3A.