AI

The **MH13FAD-R** is an electronic component primarily classified as a **Hall Effect Sensor IC**. It is designed for non-contact magnetic field sensing, commonly used in consumer electronics for lid-close detection, proximity sensing, and pulse counting.
---
## 1. Core Technical Specifications
The MH13FAD-R is characterized by its low power consumption and high sensitivity. Below are the primary electrical characteristics:
| Parameter | Value/Description |
| :--- | :--- |
| **Component Type** | Hall Effect Switch (Omnipolar) |
| **Supply Voltage ($V_{DD}$)** | 1.65V to 6.0V |
| **Average Supply Current** | ~2μA to 5μA (Ultra-low power) |
| **Output Type** | Push-Pull (no external pull-up resistor required) |
| **Magnetic Sensitivity** | High Sensitivity (typically 30-50 Gauss) |
| **Package Type** | SOT-23 or DFN (Surface Mount) |
---
## 2. Functional Features
The "R" suffix often denotes specific reel packaging or a revision, but the core functionality remains centered on the following:
* **Omnipolar Operation:** Unlike unipolar sensors that require a specific North or South pole, this sensor activates with **either** pole of a magnet. This simplifies assembly as magnet orientation does not matter.
* **Micropower Sampling:** To save energy, the IC is not "on" constantly. It uses a clocking mechanism to wake up, sample the magnetic field, and return to a sleep state.
* **Temperature Stability:** It is designed to operate reliably across a standard industrial temperature range (usually -40°C to +85°C).
---
## 3. Typical Application Circuit
Because it features a **Push-Pull output**, the MH13FAD-R is very easy to interface directly with a Microcontroller (MCU).
```c
// Example logic for an MCU reading the MH13FAD-R
#define HALL_SENSOR_PIN 2
void setup() {
pinMode(HALL_SENSOR_PIN, INPUT); // Internal pull-up not required
}
void loop() {
int sensorState = digitalRead(HALL_SENSOR_PIN);
if (sensorState == LOW) {
// Magnet detected (e.g., Laptop lid closed)
} else {
// No magnet detected
}
}
```
---
## 4. Common Use Cases
* **Smart Covers:** Detecting when a tablet or smartphone flip-cover is closed.
* **Utility Meters:** Measuring water or gas flow via a rotating magnet (pulse counting).
* **Handheld Devices:** Powering on/off devices when they are removed from a dock or holster.
* **TWS Earbuds:** Detecting when the earbuds are placed inside or removed from the charging case.
- ⤷
What is the difference between an omnipolar and a bipolar Hall effect sensor?
- ⤷ How do I calculate the battery life for a circuit using the MH13FAD-R?
- ⤷ Does this sensor require any external filtering components like capacitors?