

The MCP1700 is a low-dropout (LDO) voltage regulator manufactured by Bridgold. It is designed to provide a stable output voltage with an exceptionally low quiescent current, making it an excellent choice for battery-powered and energy-efficient applications. The MCP1700 can deliver up to 250 mA of output current and operates over a wide input voltage range. Its low dropout voltage and built-in thermal shutdown protection ensure reliable performance in various electronic circuits.








| Parameter | Value |
|---|---|
| Manufacturer | Bridgold |
| Part Number | MCP1700 |
| Output Current | Up to 250 mA |
| Input Voltage Range | 2.3 V to 6.0 V |
| Output Voltage Options | 1.2 V, 1.5 V, 1.8 V, 2.5 V, 3.0 V, 3.3 V, 5.0 V |
| Dropout Voltage | 178 mV (typical at 250 mA load) |
| Quiescent Current | 1.6 µA (typical) |
| Operating Temperature Range | -40°C to +125°C |
| Protection Features | Thermal shutdown, short-circuit protection |
The MCP1700 is available in multiple package types, such as SOT-23 and TO-92. Below is the pin configuration for the SOT-23-3 package:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | VIN | Input voltage (2.3 V to 6.0 V) |
| 2 | GND | Ground |
| 3 | VOUT | Regulated output voltage |
For the TO-92 package:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | VOUT | Regulated output voltage |
| 2 | GND | Ground |
| 3 | VIN | Input voltage (2.3 V to 6.0 V) |
The MCP1700 can be used to power an Arduino UNO or other microcontroller boards. Below is an example circuit and code to demonstrate its usage:
// Example code for Arduino UNO powered by MCP1700 LDO regulator
// This code blinks an LED connected to pin 13
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output
}
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
}
No Output Voltage:
Output Voltage is Unstable:
Overheating:
Short Circuit or Overload:
Q: Can I use electrolytic capacitors instead of ceramic capacitors?
A: While electrolytic capacitors can be used, ceramic capacitors are recommended due to their low ESR, which ensures better stability and performance.
Q: What happens if the input voltage exceeds 6.0 V?
A: Exceeding the maximum input voltage can damage the MCP1700. Always ensure the input voltage stays within the specified range.
Q: Can the MCP1700 power a microcontroller directly?
A: Yes, the MCP1700 can provide a stable voltage to power microcontrollers, provided the total current draw does not exceed 250 mA.
Q: Is the MCP1700 suitable for high-frequency switching circuits?
A: The MCP1700 is designed for low-power, low-frequency applications. For high-frequency circuits, consider using a switching regulator instead.
This concludes the documentation for the MCP1700 LDO voltage regulator.