

The IP2312, manufactured by Injoinic Technology, is a high-performance power management integrated circuit (PMIC) designed for battery-powered applications. It features a low-dropout (LDO) regulator and multiple output voltage options, making it ideal for efficient power distribution in portable devices. The IP2312 is widely used in applications such as wearable electronics, IoT devices, and portable medical equipment due to its compact size, high efficiency, and reliable performance.








The IP2312 is typically available in a 6-pin package. Below is the pinout and description:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | VIN | Input voltage supply (2.5V to 6.5V). |
| 2 | GND | Ground connection. |
| 3 | EN | Enable pin. High to enable the IC, low to disable. |
| 4 | FB | Feedback pin for output voltage adjustment. |
| 5 | VOUT | Regulated output voltage. |
| 6 | NC | No connection (leave floating or connect to GND). |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | VIN | Input voltage supply (2.5V to 6.5V). |
| 2 | GND | Ground connection. |
| 3 | EN | Enable pin. High to enable the IC, low to disable. |
| 4 | FB | Feedback pin for output voltage adjustment. |
| 5 | VOUT | Regulated output voltage. |
| 6 | GND (Pad) | Exposed thermal pad for heat dissipation. |
The IP2312 can be used to power an Arduino UNO by providing a stable 5V output. Below is an example circuit and Arduino code to enable the IC:
// Example code to control the EN pin of the IP2312 using Arduino UNO
const int enablePin = 7; // Pin 7 connected to the EN pin of IP2312
void setup() {
pinMode(enablePin, OUTPUT); // Set enablePin as an output
digitalWrite(enablePin, HIGH); // Enable the IP2312
}
void loop() {
// The IP2312 remains enabled, providing power to the Arduino
delay(1000); // Placeholder for user code
}
No Output Voltage:
Output Voltage Instability:
Excessive Heat:
High Quiescent Current:
Can the IP2312 operate with a 3.7V Li-ion battery?
Yes, the IP2312 supports input voltages as low as 2.5V, making it compatible with 3.7V Li-ion batteries.
What is the maximum output current of the IP2312?
The IP2312 can provide up to 1A of output current.
How do I adjust the output voltage?
Use a resistor divider network connected to the FB pin to set the desired output voltage.
Is the IP2312 suitable for powering microcontrollers?
Yes, the IP2312 is ideal for powering microcontrollers due to its low dropout voltage and high efficiency.
By following this documentation, users can effectively integrate the IP2312 into their designs for efficient power management.