

The Pololu S9V11F3S5C3 is a compact and efficient buck-boost voltage regulator designed to provide a stable output voltage of 3.3V or 5V from a wide input voltage range of 2V to 16V. This versatile component is ideal for applications where the input voltage can vary above or below the desired output voltage, such as battery-powered devices, portable electronics, and embedded systems.








| Parameter | Value |
|---|---|
| Manufacturer | Pololu |
| Part Number | S9V11F3S5C3 |
| Input Voltage Range | 2V to 16V |
| Output Voltage Options | 3.3V or 5V (selectable) |
| Maximum Output Current | 1.5A (depending on input/output conditions) |
| Efficiency | Up to 90% |
| Dimensions | 0.6" × 0.8" × 0.1" (15 × 20 × 3 mm) |
| Weight | 0.6 g |
The Pololu S9V11F3S5C3 has six pins, as described in the table below:
| Pin Name | Pin Number | Description |
|---|---|---|
| VIN | 1 | Input voltage pin (2V to 16V). Connect to the positive terminal of the power source. |
| GND | 2 | Ground pin. Connect to the negative terminal of the power source. |
| VOUT | 3 | Regulated output voltage pin (3.3V or 5V). Connect to the load. |
| SHDN | 4 | Shutdown pin. Drive low to disable the regulator; leave floating or drive high to enable. |
| SEL | 5 | Voltage selection pin. Drive low for 3.3V output or high for 5V output. |
| PG | 6 | Power good indicator pin. Outputs high when the output voltage is stable. |
The Pololu S9V11F3S5C3 can be used to power an Arduino UNO from a battery or other variable voltage source. Below is an example circuit and Arduino code to monitor the PG pin.
const int pgPin = 2; // Power Good pin connected to digital pin 2
void setup() {
pinMode(pgPin, INPUT); // Set PG pin as input
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int pgStatus = digitalRead(pgPin); // Read the PG pin status
if (pgStatus == HIGH) {
Serial.println("Output voltage is stable."); // PG pin is high when voltage is stable
} else {
Serial.println("Output voltage is unstable!"); // PG pin is low if voltage is not stable
}
delay(1000); // Wait for 1 second before checking again
}
No Output Voltage
Output Voltage is Incorrect
Regulator Overheating
PG Pin Always Low
Q: Can I use this regulator to power a Raspberry Pi?
A: Yes, but ensure the input voltage and current requirements of the Raspberry Pi are met. The regulator can provide up to 1.5A, which is sufficient for most Raspberry Pi models under normal conditions.
Q: What happens if the input voltage drops below 2V?
A: The regulator will stop functioning, and the output voltage will drop. Ensure the input voltage stays within the specified range.
Q: Can I leave the SEL pin floating?
A: No, the SEL pin must be explicitly driven high or low to select the output voltage.
Q: Is reverse polarity protection included?
A: No, the regulator does not have built-in reverse polarity protection. Use a diode or other protection circuit to prevent damage.