

The STM811 is a microprocessor supervisory circuit designed to ensure reliable operation of microcontrollers and other digital systems. It monitors the supply voltage and generates a reset signal when the voltage drops below a predefined threshold. This functionality is critical for preventing erratic behavior during power-up, power-down, or brownout conditions. The STM811 is compact, efficient, and widely used in embedded systems to enhance system stability and reliability.








| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | GND | Ground |
| 2 | RESET | Reset output (active-low) |
| 3 | VCC | Supply voltage input |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | GND | Ground |
| 2 | RESET | Reset output (active-low) |
| 3 | VCC | Supply voltage input |
| 4 | MR | Manual reset input (active-low) |
| 5 | NC | No connection (leave unconnected) |
The STM811 can be used to provide reliable reset functionality for an Arduino UNO. Below is an example circuit and Arduino code:
// Example code to demonstrate the STM811 reset functionality
// This code toggles an LED to indicate normal operation. If the STM811
// triggers a reset, the Arduino will restart and the LED will blink again.
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 LED on
delay(500); // Wait for 500ms
digitalWrite(ledPin, LOW); // Turn LED off
delay(500); // Wait for 500ms
}
Reset Signal Not Triggering:
False Resets:
Microcontroller Does Not Start After Reset:
Q1: Can the STM811 be used with 3.3V systems?
A1: Yes, the STM811 supports operating voltages as low as 1.0V and is compatible with 3.3V systems. Ensure the reset threshold voltage matches your system's requirements.
Q2: What is the difference between push-pull and open-drain RESET outputs?
A2: Push-pull outputs actively drive both high and low states, while open-drain outputs require an external pull-up resistor to drive the high state. Check your system's requirements before selecting the STM811 variant.
Q3: Can I leave the MR pin unconnected in the SOT23-5 package?
A3: No, the MR pin should be pulled high with a resistor (e.g., 10kΩ) if not used to prevent false resets.
Q4: How do I select the correct reset threshold voltage?
A4: Choose a reset threshold voltage slightly below your system's nominal operating voltage to ensure reliable operation during voltage fluctuations. Refer to the STM811 datasheet for available threshold options.