MH34TCD-R
AI

The **MH34TCD-R** refers to a high-performance **Magnetic Hall Effect Sensor**, typically utilized in automotive and industrial applications for precision position and speed sensing.
Below is a breakdown of its electronic characteristics and specifications.
---
## 1. Core Technical Specifications
The MH34TCD-R is generally categorized as a high-sensitivity, temperature-compensated Hall Effect switch.
| Parameter | Typical Value / Range |
| :--- | :--- |
| **Operating Voltage (Vcc)** | 2.5V to 24V DC |
| **Output Type** | Open Drain (Active Low) |
| **Magnetic Sensitivity** | High (Typical Operating Point: 30G - 60G) |
| **Operating Temperature** | -40°C to +150°C |
| **Package Type** | SOT-23 or TO-92S (Surface Mount or Lead) |
| **Switching Frequency** | Up to 10 kHz |
---
## 2. Pin Configuration
For the common **SOT-23** surface-mount package, the pinout is usually structured as follows:
1. **VDD (Supply):** Input voltage source.
2. **OUT (Output):** Connects to a pull-up resistor (logic high when no field is present).
3. **GND (Ground):** Common return path.
---
## 3. Key Electronic Features
* **Built-in Voltage Regulator:** Allows the sensor to operate across a wide range of supply voltages without affecting sensitivity.
* **Temperature Compensation:** Includes internal circuitry to stabilize the magnetic switch points against thermal drift, making it ideal for engine compartments.
* **Reverse Polarity Protection:** Protects the internal circuitry if the power leads are connected backwards.
* **Open-Drain Output:** Requires an external pull-up resistor to interface with microcontrollers (like Arduino, ESP32, or Automotive ECUs).
---
## 4. Typical Applications
The "R" suffix often denotes specific reel packaging or a specific sensitivity rating used in:
* **Brushless DC (BLDC) Motors:** Sensing rotor position for commutation.
* **Speedometers:** Measuring the RPM of gears or wheels.
* **Proximity Switching:** Detecting if a lid, door, or lever is open or closed.
* **Flow Meters:** Counting rotations of an internal turbine.
---
## 5. Basic Connection Diagram
```cpp
// Example: Logic representation for a Microcontroller
// VCC (Sensor) -> 5V
// GND (Sensor) -> GND
// OUT (Sensor) -> Digital Pin 2 (With 10k Pull-up Resistor to 5V)
void setup() {
pinMode(2, INPUT); // Reads HIGH when no magnet is near
}
```
- ⤷
What is the recommended pull-up resistor value for the MH34TCD-R?
- ⤷ Can this sensor detect both North and South magnetic poles (Omnipolar) or just one (Unipolar)?
- ⤷ What are the specific soldering temperature limits for the SOT-23 version?